2023-01-03 10:41:30 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2014-05-05 10:22:23 +02:00
|
|
|
|
<PropertyGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<TargetFramework>net48</TargetFramework>
|
2014-05-05 10:22:23 +02:00
|
|
|
|
<OutputType>Library</OutputType>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
2014-05-05 10:22:23 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
2021-07-12 14:36:18 +02:00
|
|
|
|
<OutputPath>..\Debug\</OutputPath>
|
2021-03-14 22:13:22 +01:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2014-05-05 10:22:23 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
2021-03-14 22:13:22 +01:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2014-05-05 10:22:23 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
|
|
|
|
|
<OutputPath>..\Debug\</OutputPath>
|
2021-03-14 22:13:22 +01:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2014-05-05 10:22:23 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
2019-11-08 02:31:44 +01:00
|
|
|
|
<OutputPath>..\Release\</OutputPath>
|
2021-03-14 22:13:22 +01:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2014-05-05 10:22:23 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<Service Include="{94E38DFF-614B-4cbd-B67C-F211BB35CE8B}" />
|
2014-05-05 10:22:23 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<ProjectReference Include="..\ChanSort.Api\ChanSort.Api.csproj" />
|
2014-05-05 10:22:23 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|