2020-05-19 18:57:57 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-10-04 19:49:24 +00:00
|
|
|
|
<PropertyGroup>
|
2020-05-19 18:57:57 +00:00
|
|
|
|
<TargetFramework>net452</TargetFramework>
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2018-10-04 19:49:24 +00:00
|
|
|
|
</PropertyGroup>
|
2020-05-19 18:57:57 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
2018-10-04 19:49:24 +00:00
|
|
|
|
<OutputPath>..\bin\Debug\</OutputPath>
|
|
|
|
|
</PropertyGroup>
|
2020-05-19 18:57:57 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
2018-10-04 19:49:24 +00:00
|
|
|
|
<OutputPath>..\bin\Release\</OutputPath>
|
2020-05-19 18:57:57 +00:00
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
|
<DebugSymbols>false</DebugSymbols>
|
2018-10-04 19:49:24 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2020-05-19 18:57:57 +00:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
|
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.1.1" />
|
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.1.1" />
|
2018-10-04 19:49:24 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2020-05-19 18:57:57 +00:00
|
|
|
|
<ProjectReference Include="..\Quasar.Common\Quasar.Common.csproj" />
|
2018-10-04 19:49:24 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|