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>
|
2018-07-29 15:43:42 -04:00
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-04-19 18:52:48 -04:00
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
<StartupObject />
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<DefineConstants>TRACE;DEBUG;NETCOREAPP2_0</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-08-28 17:32:59 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="xunit" Version="2.4.0" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
|
|
|
|
|
</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
|
|
|
|
|
2018-04-23 17:03:50 -04:00
|
|
|
|
<ItemGroup>
|
2018-08-28 17:32:59 -04:00
|
|
|
|
<PackageReference Update="Microsoft.NETCore.App" />
|
2018-04-23 17:03:50 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-19 18:52:48 -04:00
|
|
|
|
</Project>
|