2018-07-29 15:43:42 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-04-19 18:52:48 -04:00
|
|
|
|
|
2017-09-27 16:07:43 -04:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
2019-12-24 16:23:43 -05:00
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2018-04-19 18:52:48 -04:00
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
<StartupObject />
|
2019-05-04 10:17:18 -04:00
|
|
|
|
<LangVersion>7.1</LangVersion>
|
2018-04-19 18:52:48 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
2019-12-24 16:23:43 -05:00
|
|
|
|
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
2018-04-19 18:52:48 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-08-28 17:32:59 -04:00
|
|
|
|
<ItemGroup>
|
2019-02-22 20:06:51 -05:00
|
|
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2018-08-28 17:32:59 -04:00
|
|
|
|
</ItemGroup>
|
2018-04-19 18:52:48 -04:00
|
|
|
|
|
2017-09-27 16:07:43 -04:00
|
|
|
|
<ItemGroup>
|
2018-08-28 17:32:59 -04:00
|
|
|
|
<ProjectReference Include="..\..\Application\Application.csproj" />
|
2018-04-19 18:52:48 -04:00
|
|
|
|
<ProjectReference Include="..\..\SharedLibraryCore\SharedLibraryCore.csproj" />
|
2017-09-27 16:07:43 -04:00
|
|
|
|
</ItemGroup>
|
2018-04-19 18:52:48 -04:00
|
|
|
|
|
|
|
|
|
</Project>
|