2018-06-25 11:36:42 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2019-07-17 18:26:20 +02:00
|
|
|
|
<TargetFramework>$(NetCoreTargetVersion)</TargetFramework>
|
2019-07-30 10:56:14 +02:00
|
|
|
|
<GenerateErrorForMissingTargetingPacks>false</GenerateErrorForMissingTargetingPacks>
|
2018-06-25 11:36:42 +02:00
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2018-06-27 15:57:37 +02:00
|
|
|
|
<None Remove="appsettings.json" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="appsettings.json">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2018-06-25 11:36:42 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-07-29 14:05:17 +02:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="$(Microsoft_AspNetCore_Mvc_Testing)" />
|
2019-07-17 18:26:20 +02:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(Microsoft_NET_Test_Sdk)" />
|
2019-07-19 13:09:30 +02:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="$(Microsoft_AspNetCore_TestHost)" />
|
2019-07-17 18:26:20 +02:00
|
|
|
|
<PackageReference Include="xunit" Version="$(xunit)" />
|
2019-07-18 12:31:27 +02:00
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="$(xunit_runner_visualstudio)">
|
2019-02-19 12:07:04 +03:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2019-07-29 14:05:17 +02:00
|
|
|
|
|
2018-06-25 11:36:42 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2018-06-27 15:57:37 +02:00
|
|
|
|
<ProjectReference Include="..\Locations.API\Locations.API.csproj" />
|
2018-06-25 11:36:42 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|