-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUpuGui.csproj
32 lines (28 loc) · 1.2 KB
/
UpuGui.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<RootNamespace>UpuGui</RootNamespace>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishReadyToRun>true</PublishReadyToRun>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<_SuppressWinFormsTrimError>true</_SuppressWinFormsTrimError>
<AssemblyVersion>1.6.5.0</AssemblyVersion>
<FileVersion>1.6.5.0</FileVersion>
<ProductVersion>1.6.5.0</ProductVersion>
<Authors>Myrkur</Authors>
<Copyright>Myrkur/Myrkie</Copyright>
<IsPackable>false</IsPackable>
<ApplicationIcon>Icons\70px\icons8-archive-folder-70.ico</ApplicationIcon>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
</PropertyGroup>
<ItemGroup>
<Compile Update="UpuGui\UpuGui.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>