forked from aianlinb/VisualGGPK2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLibDat2.csproj
33 lines (29 loc) · 1.09 KB
/
LibDat2.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
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<Authors>aianlinb</Authors>
<Copyright>Copyright © 2020-2021 aianlinb.</Copyright>
<Version>0.12.4</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\Release</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\Release\Release</OutputPath>
<Optimize>true</Optimize>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<None Update="DatDefinitions_extra.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="ForceUseOldDatDefinitionsList.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>