2023-01-03 10:41:30 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-08-29 16:57:20 +02:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
2019-11-08 02:31:44 +01:00
|
|
|
|
<OutputPath>..\Debug\</OutputPath>
|
2019-08-29 16:57:20 +02:00
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
|
|
|
|
|
<OutputPath>bin\x86\Release\</OutputPath>
|
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
|
</PropertyGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net48</TargetFramework>
|
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
|
</PropertyGroup>
|
2019-08-29 16:57:20 +02:00
|
|
|
|
<ItemGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<ProjectReference Include="..\ChanSort.Api\ChanSort.Api.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\ChanSort.Loader.Sony\ChanSort.Loader.Sony.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Test.Loader\Test.Loader.csproj" />
|
2019-08-29 16:57:20 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<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" />
|
2019-08-29 16:57:20 +02:00
|
|
|
|
</ItemGroup>
|
2023-01-03 10:41:30 +01:00
|
|
|
|
<Import Project="..\packages\NETStandard.Library.2.0.3\build\net48\NETStandard.Library.targets" Condition="Exists('..\packages\NETStandard.Library.2.0.3\build\net48\NETStandard.Library.targets')" />
|
2019-08-29 16:57:20 +02:00
|
|
|
|
</Project>
|