-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathNKXToolUI.csproj
More file actions
30 lines (26 loc) · 888 Bytes
/
Copy pathNKXToolUI.csproj
File metadata and controls
30 lines (26 loc) · 888 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<RootNamespace>NkxToolUI</RootNamespace>
<AssemblyName>NkxToolUI</AssemblyName>
<Platforms>AnyCPU</Platforms>
<ApplicationIcon>Assets\app_icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="lang.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="nkxtoolsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Using Remove="System.Windows.Forms" />
</ItemGroup>
</Project>