2018-06-25 11:36:42 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2018-11-12 17:27:54 +01:00
|
|
|
|
<TargetFramework>netcoreapp2.2</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>
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" />
|
2018-11-12 17:27:54 +01:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.2.0-preview3-35497" />
|
2018-06-25 11:36:42 +02:00
|
|
|
|
<PackageReference Include="xunit" Version="2.3.1" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
|
|
|
|
|
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
|
2018-06-27 15:57:37 +02:00
|
|
|
|
<PackageReference Include="Moq" Version="4.8.1" />
|
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>
|