This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
CC-Functions/W32.Test/W32.Test.csproj

26 lines
1.3 KiB
XML
Raw Normal View History

2020-03-13 19:19:55 +01:00
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
2019-09-07 10:12:24 +02:00
<PropertyGroup>
2020-11-11 16:37:36 +01:00
<TargetFramework>net5.0</TargetFramework>
2019-09-07 10:12:24 +02:00
<OutputType>WinExe</OutputType>
<RootNamespace>CC_Functions.W32.Test</RootNamespace>
<AssemblyName>CC_Functions.W32.Test</AssemblyName>
2020-01-10 16:52:06 +01:00
<LangVersion>8</LangVersion>
2020-03-13 19:19:55 +01:00
<UseWindowsForms>true</UseWindowsForms>
2020-03-20 13:15:16 +01:00
<Deterministic>false</Deterministic>
<AssemblyVersion>1.1.*</AssemblyVersion>
2020-03-20 13:15:16 +01:00
</PropertyGroup>
<PropertyGroup>
<PostBuildEvent>if exist "$(SolutionDir)Data\pkgtool.exe" ($(SolutionDir)Data\pkgtool.exe build --noLogo --binDir .) else if exist "%appdata%\UpTool2\Apps\0e35d154-d0d3-45e0-b080-62f521263a44\app\pkgtool.exe" ("%appdata%\UpTool2\Apps\0e35d154-d0d3-45e0-b080-62f521263a44\app\pkgtool.exe" build --noLogo --binDir .) else echo Cound not find Package build tools, skipping</PostBuildEvent>
2019-09-07 10:12:24 +02:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020-04-04 12:05:42 +02:00
<DocumentationFile></DocumentationFile>
2019-09-07 10:12:24 +02:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2020-04-04 12:05:42 +02:00
<DocumentationFile></DocumentationFile>
2019-09-07 10:12:24 +02:00
</PropertyGroup>
<ItemGroup>
2020-03-13 19:19:55 +01:00
<ProjectReference Include="..\Misc\Misc.csproj" />
<ProjectReference Include="..\W32\W32.csproj" />
2019-09-07 10:12:24 +02:00
</ItemGroup>
</Project>