-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathKRPackTool.csproj
More file actions
61 lines (56 loc) · 2.02 KB
/
Copy pathKRPackTool.csproj
File metadata and controls
61 lines (56 loc) · 2.02 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0-windows7.0</TargetFramework>
<UseWindowsForms>False</UseWindowsForms>
<!--PublishAot>true</PublishAot-->
<PublishSingleFile>true</PublishSingleFile>
<PublishReadyToRun>true</PublishReadyToRun>
<RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<AssemblyName>KRPackTool</AssemblyName>
<RootNamespace>KRPackTool</RootNamespace>
<ApplicationIcon>lkk_Icon.ico</ApplicationIcon>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<WarningLevel>2</WarningLevel>
<PublishDir>.\</PublishDir>
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<WarningLevel>2</WarningLevel>
<PublishDir>.\</PublishDir>
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<WarningLevel>2</WarningLevel>
<PublishDir>.\</PublishDir>
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<WarningLevel>2</WarningLevel>
<PublishDir>.\</PublishDir>
<DebugType>full</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Remove="TestProject\**" />
<Compile Remove="win-x64\**" />
<EmbeddedResource Remove="TestProject\**" />
<EmbeddedResource Remove="win-x64\**" />
<None Remove="TestProject\**" />
<None Remove="win-x64\**" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitignore" />
</ItemGroup>
<ItemGroup>
<Content Include="lkk_Icon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Ionic.Zlib.Core" Version="1.0.0" />
</ItemGroup>
</Project>