-
Notifications
You must be signed in to change notification settings - Fork 1
/
AutoSaver.csproj
49 lines (43 loc) · 1.64 KB
/
AutoSaver.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>save.ico</ApplicationIcon>
<SignAssembly>False</SignAssembly>
<AssemblyOriginatorKeyFile></AssemblyOriginatorKeyFile>
<Authors>andreweathan & Cioss</Authors>
<Version>1.1.0</Version>
<Title>AutoSaver</Title>
<Company>andreweathan</Company>
<Description>Helpful auto-saving reminder for your work</Description>
<Copyright>Copyright ©️ andreweathan 2022-current year</Copyright>
<PackageProjectUrl>https://github.com/Andrew-Eathan/AutoSaver</PackageProjectUrl>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Content Include="save.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Costura.Fody" Version="5.7.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="GameOverlay.Net" Version="4.3.1" />
</ItemGroup>
<ItemGroup>
<Compile Update="ASResources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>ASResources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="ASResources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>ASResources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>