-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkat-pcgw-nexus.csproj
51 lines (43 loc) · 1.46 KB
/
kat-pcgw-nexus.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<RootNamespace>kat_pcgw_nexus</RootNamespace>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<PandocOutputDir>$(MSBuildThisFileDirectory)$(OutputPath)</PandocOutputDir>
<PandocOutputFormat>rtf</PandocOutputFormat>
<PandocTableOfContents>false</PandocTableOfContents>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<FileVersion>1.3.0.0</FileVersion>
<Version>1.3.0</Version>
</PropertyGroup>
<ItemGroup>
<Compile Remove="installer\**" />
<EmbeddedResource Remove="installer\**" />
<None Remove="installer\**" />
<Page Remove="installer\**" />
</ItemGroup>
<ItemGroup>
<None Remove="README.rtf" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MultimediaTimer" Version="1.0.1" />
<PackageReference Include="PandocTasks" Version="0.1.2" />
</ItemGroup>
<ItemGroup>
<Reference Include="IBizLibrary">
<HintPath>..\..\..\..\..\Program Files (x86)\KAT Gateway\IBizLibrary.dll</HintPath>
</Reference>
<Reference Include="KAT_Helper">
<HintPath>..\..\..\..\..\Program Files (x86)\KAT Gateway\KAT_Helper.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Pandoc Include="README.md" />
</ItemGroup>
</Project>