Add AssemblyInfo.cs

This commit is contained in:
2024-11-26 15:32:09 -06:00
parent a546285ae1
commit c8b732be8d
2 changed files with 14 additions and 5 deletions

View File

@@ -1,10 +1,17 @@
using System.Reflection;
using System.Windows;
[assembly: AssemblyVersion("0.1.0.0")]
[assembly: AssemblyFileVersion("0.1.0.0")]
[assembly: AssemblyProduct("Factorio Achievements Fixer")]
[assembly: AssemblyCopyright("Ryan Walters © 2024")]
[assembly: AssemblyTitle("Factorio Achievements Fixer")]
[assembly: ThemeInfo(
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
//(used if a resource is not found in the page,
// or application resource dictionaries)
//(used if a resource is not found in the page,
// or application resource dictionaries)
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
//(used if a resource is not found in the page,
// app, or any theme specific resource dictionaries)
//(used if a resource is not found in the page,
// app, or any theme specific resource dictionaries)
)]

View File

@@ -7,6 +7,8 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<Title>Factorio Achievements Fixer</Title>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
</Project>