2023-01-03 10:41:30 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-03-15 20:53:45 +01:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
|
|
|
|
|
<OutputPath>bin\x86\Debug\</OutputPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
|
|
|
|
|
<OutputPath>bin\x86\Release\</OutputPath>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net48</TargetFramework>
|
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2021-03-15 20:53:45 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<ProjectReference Include="..\ChanSort.Api\ChanSort.Api.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\ChanSort.Loader.Sharp\ChanSort.Loader.Sharp.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Test.Loader\Test.Loader.csproj" />
|
2021-03-15 20:53:45 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Folder Include="TestFiles\" />
|
|
|
|
|
|
</ItemGroup>
|
2021-04-25 18:31:05 +02:00
|
|
|
|
<ItemGroup>
|
2023-01-03 20:05:07 +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>
|
2021-03-15 20:53:45 +01:00
|
|
|
|
</Project>
|