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>
|
2018-06-25 11:36:42 +02:00
|
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-06-27 15:57:37 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="appsettings.json" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="appsettings.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-06-25 11:36:42 +02:00
|
|
|
|
<ItemGroup>
|
2019-04-08 19:25:28 -05:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.App" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="2.2.0" />
|
2019-07-17 18:26:20 +02:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(Microsoft_NET_Test_Sdk)" />
|
2018-12-11 13:51:58 +01:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.2.0" />
|
2019-07-17 18:26:20 +02:00
|
|
|
|
<PackageReference Include="xunit" Version="$(xunit)" />
|
2019-02-19 12:07:04 +03:00
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2018-06-25 11:36:42 +02:00
|
|
|
|
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
|
2019-07-17 18:26:20 +02:00
|
|
|
|
<PackageReference Include="Moq" Version="$(Moq)" />
|
2018-06-25 11:36:42 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2018-06-27 15:57:37 +02:00
|
|
|
|
<ProjectReference Include="..\..\..\Web\WebMVC\WebMVC.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Location\Locations.API\Locations.API.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Basket.API\Basket.API.csproj" />
|
2018-06-25 11:36:42 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|