Introduce pre-caching into installer

This commit is contained in:
Nathan Mytelka 2021-03-26 13:23:38 -07:00
parent ee59b48e7b
commit 6eabc3b7d4
3 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,12 @@
using System;
namespace RARPreCacheProject
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}

View file

@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
</Project>