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>
|
2019-02-12 20:34:29 -06:00
|
|
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
|
|
|
<RuntimeFrameworkVersion>2.2.2</RuntimeFrameworkVersion>
|
2018-04-19 17:52:48 -05:00
|
|
|
|
<ApplicationIcon />
|
|
|
|
|
<StartupObject />
|
2019-05-04 09:17:18 -05:00
|
|
|
|
<LangVersion>7.1</LangVersion>
|
2018-04-19 17:52:48 -05:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<DefineConstants>TRACE;DEBUG;NETCOREAPP2_0</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-08-28 16:32:59 -05:00
|
|
|
|
<ItemGroup>
|
2019-02-22 19:06:51 -06: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 16:32:59 -05:00
|
|
|
|
</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>
|
2019-02-12 20:34:29 -06:00
|
|
|
|
<PackageReference Update="Microsoft.NETCore.App" Version="2.2.2" />
|
2018-04-23 16:03:50 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-19 17:52:48 -05:00
|
|
|
|
</Project>
|