Use the new required assets option

This commit is contained in:
Melon 2020-10-17 22:49:12 +01:00
parent 33b21cee5c
commit 1f68289f72
2 changed files with 6 additions and 2 deletions

View File

@ -110,7 +110,11 @@ namespace CodeViewAndExec
ProjectDirectory = Directory.GetCurrentDirectory(),
AuthorName = "CodeViewAndExec",
RepoName = "CodeViewAndExec",
CurrentVersion = Program.Version
CurrentVersion = Program.Version,
RequiredAssets = new string[]
{
"CodeViewAndExec.exe"
}
};
if (pkg.CheckForUpdates())
{

View File

@ -21,7 +21,7 @@ namespace CodeViewAndExec
Application.Run(new Form1());
}
public const string VersionNumber = "1.0.6";
public const string VersionNumber = "1.0.7";
public static string Version = "v" + VersionNumber;
private static Assembly OnResolveAssembly(object sender, ResolveEventArgs args)