2018-07-29 14:43:42 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-04-19 17:52:48 -05:00
|
|
|
|
|
2017-09-27 15:07:43 -05:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
2018-07-29 14:43:42 -05:00
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-10-07 21:34:30 -05:00
|
|
|
|
<RuntimeFrameworkVersion>2.1.5</RuntimeFrameworkVersion>
|
2018-04-19 17:52:48 -05:00
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
<StartupObject />
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<DefineConstants>TRACE;DEBUG;NETCOREAPP2_0</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-08-28 16:32:59 -05:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="xunit" Version="2.4.0" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
|
|
|
|
|
</ItemGroup>
|
2018-04-19 17:52:48 -05:00
|
|
|
|
|
2017-09-27 15:07:43 -05:00
|
|
|
|
<ItemGroup>
|
2018-08-28 16:32:59 -05:00
|
|
|
|
<ProjectReference Include="..\..\Application\Application.csproj" />
|
2018-04-19 17:52:48 -05:00
|
|
|
|
<ProjectReference Include="..\..\SharedLibraryCore\SharedLibraryCore.csproj" />
|
2017-09-27 15:07:43 -05:00
|
|
|
|
</ItemGroup>
|
2018-04-19 17:52:48 -05:00
|
|
|
|
|
2018-04-23 16:03:50 -05:00
|
|
|
|
<ItemGroup>
|
2018-10-07 21:34:30 -05:00
|
|
|
|
<PackageReference Update="Microsoft.NETCore.App" Version="2.1.5" />
|
2018-04-23 16:03:50 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-19 17:52:48 -05:00
|
|
|
|
</Project>
|