2023-01-03 21:01:41 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2013-03-31 14:09:38 +02:00
|
|
|
|
<PropertyGroup>
|
2023-01-03 21:01:41 +01:00
|
|
|
|
<TargetFramework>net48</TargetFramework>
|
2013-03-31 14:09:38 +02:00
|
|
|
|
<OutputType>Library</OutputType>
|
2023-01-03 21:01:41 +01:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2013-03-31 14:09:38 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
|
|
|
|
|
<OutputPath>..\Debug\</OutputPath>
|
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
|
|
|
|
|
<OutputPath>bin\x86\Release\</OutputPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<CodeAnalysisDependentAssemblyPaths Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies">
|
|
|
|
|
|
<Visible>False</Visible>
|
|
|
|
|
|
</CodeAnalysisDependentAssemblyPaths>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-01-03 21:01:41 +01:00
|
|
|
|
<ProjectReference Include="..\ChanSort.Api\ChanSort.Api.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\ChanSort.Loader.LG\ChanSort.Loader.LG.csproj" />
|
2013-03-31 14:09:38 +02:00
|
|
|
|
</ItemGroup>
|
2021-04-25 18:31:05 +02:00
|
|
|
|
<ItemGroup>
|
2023-01-03 21:01:41 +01:00
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="3.0.2" />
|
|
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="3.0.2" />
|
2021-04-25 18:31:05 +02:00
|
|
|
|
</ItemGroup>
|
2013-03-31 14:09:38 +02:00
|
|
|
|
</Project>
|