-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZeroInput.csproj
More file actions
39 lines (34 loc) · 1.13 KB
/
ZeroInput.csproj
File metadata and controls
39 lines (34 loc) · 1.13 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<AssemblyVersion>1.0.5.0</AssemblyVersion>
<FileVersion>1.0.5.0</FileVersion>
<Version>1.0.5</Version>
<Authors>Josh 'Kkthnx' Russell</Authors>
<Company>ZeroInput</Company>
<Product>ZeroInput</Product>
<ApplicationIcon>ZeroInput.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<None Remove="publish.ps1" />
<None Remove="ZeroInput.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.0" />
<PackageReference Include="Velopack" Version="0.0.1053" />
</ItemGroup>
<ItemGroup>
<Resource Include="publish.ps1">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="ZeroInput.ico">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
</ItemGroup>
</Project>