-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNtk.Tools.AutoType.csproj
More file actions
33 lines (28 loc) · 1.21 KB
/
Ntk.Tools.AutoType.csproj
File metadata and controls
33 lines (28 loc) · 1.21 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>Ntk.Tools.AutoType</AssemblyName>
<RootNamespace>Ntk.Tools.AutoType</RootNamespace>
<Version>1.1.2</Version>
<Authors>NTK</Authors>
<Company>NTK</Company>
<Product>Ntk.Tools.AutoType</Product>
<Description>برنامه تایپ خودکار</Description>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>
<!-- Single File Output Configuration for Release - Default is Framework-Dependent -->
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>false</SelfContained>
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<!-- Additional settings for Self-Contained only -->
<PropertyGroup Condition="'$(Configuration)'=='Release' AND '$(SelfContained)'=='true'">
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
</PropertyGroup>
</Project>