1. Microsoft.NET.Test.Sdk 15.7.0->15.8.0 2. Microsoft.AspNetCore.TestHost 2.1.0->2.1.1pull/736/head
@ -1,33 +1,34 @@ | |||
<Project Sdk="Microsoft.NET.Sdk"> | |||
<PropertyGroup> | |||
<TargetFramework>netcoreapp2.1</TargetFramework> | |||
<PropertyGroup> | |||
<TargetFramework>netcoreapp2.1</TargetFramework> | |||
<RuntimeFrameworkVersion>2.1.3</RuntimeFrameworkVersion> | |||
<IsPackable>false</IsPackable> | |||
</PropertyGroup> | |||
<IsPackable>false</IsPackable> | |||
</PropertyGroup> | |||
<ItemGroup> | |||
<None Remove="appsettings.json" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<None Remove="appsettings.json" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Content Include="appsettings.json"> | |||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | |||
</Content> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Content Include="appsettings.json"> | |||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | |||
</Content> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" /> | |||
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.1.0" /> | |||
<PackageReference Include="xunit" Version="2.3.1" /> | |||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | |||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | |||
<PackageReference Include="Moq" Version="4.8.1" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" /> | |||
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.1.1" /> | |||
<PackageReference Include="xunit" Version="2.3.1" /> | |||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | |||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | |||
<PackageReference Include="Moq" Version="4.8.1" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\..\..\Web\WebMVC\WebMVC.csproj" /> | |||
<ProjectReference Include="..\..\Location\Locations.API\Locations.API.csproj" /> | |||
<ProjectReference Include="..\Basket.API\Basket.API.csproj" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\..\..\Web\WebMVC\WebMVC.csproj" /> | |||
<ProjectReference Include="..\..\Location\Locations.API\Locations.API.csproj" /> | |||
<ProjectReference Include="..\Basket.API\Basket.API.csproj" /> | |||
</ItemGroup> | |||
</Project> |
@ -1,23 +1,24 @@ | |||
<Project Sdk="Microsoft.NET.Sdk"> | |||
<PropertyGroup> | |||
<TargetFramework>netcoreapp2.1</TargetFramework> | |||
<PropertyGroup> | |||
<TargetFramework>netcoreapp2.1</TargetFramework> | |||
<RuntimeFrameworkVersion>2.1.3</RuntimeFrameworkVersion> | |||
<IsPackable>false</IsPackable> | |||
</PropertyGroup> | |||
<IsPackable>false</IsPackable> | |||
</PropertyGroup> | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" /> | |||
<PackageReference Include="xunit" Version="2.3.1" /> | |||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | |||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | |||
<PackageReference Include="MediatR" Version="4.1.0" /> | |||
<PackageReference Include="Moq" Version="4.8.1" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" /> | |||
<PackageReference Include="xunit" Version="2.3.1" /> | |||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | |||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | |||
<PackageReference Include="MediatR" Version="4.1.0" /> | |||
<PackageReference Include="Moq" Version="4.8.1" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\..\..\Web\WebMVC\WebMVC.csproj" /> | |||
<ProjectReference Include="..\Basket.API\Basket.API.csproj" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\..\..\Web\WebMVC\WebMVC.csproj" /> | |||
<ProjectReference Include="..\Basket.API\Basket.API.csproj" /> | |||
</ItemGroup> | |||
</Project> |
@ -1,47 +1,48 @@ | |||
<Project Sdk="Microsoft.NET.Sdk"> | |||
<PropertyGroup> | |||
<TargetFramework>netcoreapp2.1</TargetFramework> | |||
<PropertyGroup> | |||
<TargetFramework>netcoreapp2.1</TargetFramework> | |||
<RuntimeFrameworkVersion>2.1.3</RuntimeFrameworkVersion> | |||
<IsPackable>false</IsPackable> | |||
</PropertyGroup> | |||
<IsPackable>false</IsPackable> | |||
</PropertyGroup> | |||
<ItemGroup> | |||
<None Remove="appsettings.json" /> | |||
<None Remove="Setup\CatalogBrands.csv" /> | |||
<None Remove="Setup\CatalogItems.csv" /> | |||
<None Remove="Setup\CatalogItems.zip" /> | |||
<None Remove="Setup\CatalogTypes.csv" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<None Remove="appsettings.json" /> | |||
<None Remove="Setup\CatalogBrands.csv" /> | |||
<None Remove="Setup\CatalogItems.csv" /> | |||
<None Remove="Setup\CatalogItems.zip" /> | |||
<None Remove="Setup\CatalogTypes.csv" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Content Include="appsettings.json"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Setup\CatalogBrands.csv"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Setup\CatalogItems.csv"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Setup\CatalogItems.zip"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Setup\CatalogTypes.csv"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Content Include="appsettings.json"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Setup\CatalogBrands.csv"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Setup\CatalogItems.csv"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Setup\CatalogItems.zip"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Setup\CatalogTypes.csv"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" /> | |||
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.1.0" /> | |||
<PackageReference Include="xunit" Version="2.3.1" /> | |||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | |||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" /> | |||
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.1.1" /> | |||
<PackageReference Include="xunit" Version="2.3.1" /> | |||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | |||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\Catalog.API\Catalog.API.csproj" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\Catalog.API\Catalog.API.csproj" /> | |||
</ItemGroup> | |||
</Project> |
@ -1,22 +1,23 @@ | |||
<Project Sdk="Microsoft.NET.Sdk"> | |||
<PropertyGroup> | |||
<TargetFramework>netcoreapp2.1</TargetFramework> | |||
<PropertyGroup> | |||
<TargetFramework>netcoreapp2.1</TargetFramework> | |||
<RuntimeFrameworkVersion>2.1.3</RuntimeFrameworkVersion> | |||
<IsPackable>false</IsPackable> | |||
</PropertyGroup> | |||
<IsPackable>false</IsPackable> | |||
</PropertyGroup> | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" /> | |||
<PackageReference Include="xunit" Version="2.3.1" /> | |||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | |||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | |||
<PackageReference Include="Moq" Version="4.8.1" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" /> | |||
<PackageReference Include="xunit" Version="2.3.1" /> | |||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | |||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | |||
<PackageReference Include="Moq" Version="4.8.1" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\..\..\Web\WebMVC\WebMVC.csproj" /> | |||
<ProjectReference Include="..\Catalog.API\Catalog.API.csproj" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\..\..\Web\WebMVC\WebMVC.csproj" /> | |||
<ProjectReference Include="..\Catalog.API\Catalog.API.csproj" /> | |||
</ItemGroup> | |||
</Project> |
@ -1,31 +1,32 @@ | |||
<Project Sdk="Microsoft.NET.Sdk"> | |||
<PropertyGroup> | |||
<TargetFramework>netcoreapp2.1</TargetFramework> | |||
<PropertyGroup> | |||
<TargetFramework>netcoreapp2.1</TargetFramework> | |||
<RuntimeFrameworkVersion>2.1.3</RuntimeFrameworkVersion> | |||
<IsPackable>false</IsPackable> | |||
</PropertyGroup> | |||
<IsPackable>false</IsPackable> | |||
</PropertyGroup> | |||
<ItemGroup> | |||
<None Remove="appsettings.json" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<None Remove="appsettings.json" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Content Include="appsettings.json"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Content Include="appsettings.json"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" /> | |||
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.1.0" /> | |||
<PackageReference Include="xunit" Version="2.3.1" /> | |||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | |||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" /> | |||
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.1.1" /> | |||
<PackageReference Include="xunit" Version="2.3.1" /> | |||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | |||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\Locations.API\Locations.API.csproj" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\Locations.API\Locations.API.csproj" /> | |||
</ItemGroup> | |||
</Project> |
@ -1,32 +1,33 @@ | |||
<Project Sdk="Microsoft.NET.Sdk"> | |||
<PropertyGroup> | |||
<TargetFramework>netcoreapp2.1</TargetFramework> | |||
<PropertyGroup> | |||
<TargetFramework>netcoreapp2.1</TargetFramework> | |||
<RuntimeFrameworkVersion>2.1.3</RuntimeFrameworkVersion> | |||
<IsPackable>false</IsPackable> | |||
</PropertyGroup> | |||
<IsPackable>false</IsPackable> | |||
</PropertyGroup> | |||
<ItemGroup> | |||
<None Remove="appsettings.json" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<None Remove="appsettings.json" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Content Include="appsettings.json"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Content Include="appsettings.json"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" /> | |||
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.1.0" /> | |||
<PackageReference Include="xunit" Version="2.3.1" /> | |||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | |||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" /> | |||
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.1.1" /> | |||
<PackageReference Include="xunit" Version="2.3.1" /> | |||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | |||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\..\..\Web\WebMVC\WebMVC.csproj" /> | |||
<ProjectReference Include="..\Marketing.API\Marketing.API.csproj" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\..\..\Web\WebMVC\WebMVC.csproj" /> | |||
<ProjectReference Include="..\Marketing.API\Marketing.API.csproj" /> | |||
</ItemGroup> | |||
</Project> |
@ -1,34 +1,35 @@ | |||
<Project Sdk="Microsoft.NET.Sdk"> | |||
<PropertyGroup> | |||
<TargetFramework>netcoreapp2.1</TargetFramework> | |||
<PropertyGroup> | |||
<TargetFramework>netcoreapp2.1</TargetFramework> | |||
<RuntimeFrameworkVersion>2.1.3</RuntimeFrameworkVersion> | |||
<IsPackable>false</IsPackable> | |||
</PropertyGroup> | |||
<IsPackable>false</IsPackable> | |||
</PropertyGroup> | |||
<ItemGroup> | |||
<None Remove="appsettings.json" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<None Remove="appsettings.json" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Content Include="appsettings.json"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Content Include="appsettings.json"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" /> | |||
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.1.0" /> | |||
<PackageReference Include="xunit" Version="2.3.1" /> | |||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | |||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" /> | |||
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.1.1" /> | |||
<PackageReference Include="xunit" Version="2.3.1" /> | |||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | |||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\..\..\Web\WebMVC\WebMVC.csproj" /> | |||
<ProjectReference Include="..\Ordering.API\Ordering.API.csproj" /> | |||
<ProjectReference Include="..\Ordering.Domain\Ordering.Domain.csproj" /> | |||
<ProjectReference Include="..\Ordering.Infrastructure\Ordering.Infrastructure.csproj" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\..\..\Web\WebMVC\WebMVC.csproj" /> | |||
<ProjectReference Include="..\Ordering.API\Ordering.API.csproj" /> | |||
<ProjectReference Include="..\Ordering.Domain\Ordering.Domain.csproj" /> | |||
<ProjectReference Include="..\Ordering.Infrastructure\Ordering.Infrastructure.csproj" /> | |||
</ItemGroup> | |||
</Project> |
@ -1,25 +1,26 @@ | |||
<Project Sdk="Microsoft.NET.Sdk"> | |||
<PropertyGroup> | |||
<TargetFramework>netcoreapp2.1</TargetFramework> | |||
<PropertyGroup> | |||
<TargetFramework>netcoreapp2.1</TargetFramework> | |||
<RuntimeFrameworkVersion>2.1.3</RuntimeFrameworkVersion> | |||
<IsPackable>false</IsPackable> | |||
</PropertyGroup> | |||
<IsPackable>false</IsPackable> | |||
</PropertyGroup> | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" /> | |||
<PackageReference Include="xunit" Version="2.3.1" /> | |||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | |||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | |||
<PackageReference Include="MediatR" Version="4.1.0" /> | |||
<PackageReference Include="Moq" Version="4.8.1" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" /> | |||
<PackageReference Include="xunit" Version="2.3.1" /> | |||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | |||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | |||
<PackageReference Include="MediatR" Version="4.1.0" /> | |||
<PackageReference Include="Moq" Version="4.8.1" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\..\..\Web\WebMVC\WebMVC.csproj" /> | |||
<ProjectReference Include="..\Ordering.API\Ordering.API.csproj" /> | |||
<ProjectReference Include="..\Ordering.Domain\Ordering.Domain.csproj" /> | |||
<ProjectReference Include="..\Ordering.Infrastructure\Ordering.Infrastructure.csproj" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\..\..\Web\WebMVC\WebMVC.csproj" /> | |||
<ProjectReference Include="..\Ordering.API\Ordering.API.csproj" /> | |||
<ProjectReference Include="..\Ordering.Domain\Ordering.Domain.csproj" /> | |||
<ProjectReference Include="..\Ordering.Infrastructure\Ordering.Infrastructure.csproj" /> | |||
</ItemGroup> | |||
</Project> |
@ -1,95 +1,96 @@ | |||
<Project Sdk="Microsoft.NET.Sdk"> | |||
<PropertyGroup> | |||
<TargetFramework>netcoreapp2.1</TargetFramework> | |||
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles> | |||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> | |||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> | |||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | |||
</PropertyGroup> | |||
<PropertyGroup> | |||
<TargetFramework>netcoreapp2.1</TargetFramework> | |||
<RuntimeFrameworkVersion>2.1.3</RuntimeFrameworkVersion> | |||
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles> | |||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> | |||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> | |||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | |||
</PropertyGroup> | |||
<ItemGroup> | |||
<Compile Remove="Services\Location\**" /> | |||
<Compile Remove="Services\Marketing\**" /> | |||
<EmbeddedResource Remove="Services\Location\**" /> | |||
<EmbeddedResource Remove="Services\Marketing\**" /> | |||
<None Remove="Services\Location\**" /> | |||
<None Remove="Services\Marketing\**" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Compile Remove="Services\Location\**" /> | |||
<Compile Remove="Services\Marketing\**" /> | |||
<EmbeddedResource Remove="Services\Location\**" /> | |||
<EmbeddedResource Remove="Services\Marketing\**" /> | |||
<None Remove="Services\Location\**" /> | |||
<None Remove="Services\Marketing\**" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<None Remove="Services\Basket\appsettings.json" /> | |||
<None Remove="Setup\CatalogBrands.csv" /> | |||
<None Remove="Setup\CatalogItems.csv" /> | |||
<None Remove="Setup\CatalogItems.zip" /> | |||
<None Remove="Setup\CatalogTypes.csv" /> | |||
<None Remove="Services\Ordering\appsettings.json" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<None Remove="Services\Basket\appsettings.json" /> | |||
<None Remove="Setup\CatalogBrands.csv" /> | |||
<None Remove="Setup\CatalogItems.csv" /> | |||
<None Remove="Setup\CatalogItems.zip" /> | |||
<None Remove="Setup\CatalogTypes.csv" /> | |||
<None Remove="Services\Ordering\appsettings.json" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Compile Include="Services\Location\LocationsScenariosBase.cs" /> | |||
<Compile Include="Services\Location\LocationsTestsStartup.cs" /> | |||
<Compile Include="Services\Marketing\CampaignScenariosBase.cs" /> | |||
<Compile Include="Services\Marketing\UserLocationRoleScenariosBase.cs" /> | |||
<Compile Include="Services\Marketing\MarketingScenarios.cs" /> | |||
<Compile Include="Services\Marketing\MarketingScenariosBase.cs" /> | |||
<Compile Include="Services\Marketing\MarketingTestsStartup.cs" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Compile Include="Services\Location\LocationsScenariosBase.cs" /> | |||
<Compile Include="Services\Location\LocationsTestsStartup.cs" /> | |||
<Compile Include="Services\Marketing\CampaignScenariosBase.cs" /> | |||
<Compile Include="Services\Marketing\UserLocationRoleScenariosBase.cs" /> | |||
<Compile Include="Services\Marketing\MarketingScenarios.cs" /> | |||
<Compile Include="Services\Marketing\MarketingScenariosBase.cs" /> | |||
<Compile Include="Services\Marketing\MarketingTestsStartup.cs" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Content Include="Services\Basket\appsettings.json"> | |||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Services\Catalog\appsettings.json"> | |||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Setup\CatalogBrands.csv"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Setup\CatalogItems.csv"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Setup\CatalogItems.zip"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Setup\CatalogTypes.csv"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Services\Location\appsettings.json"> | |||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Services\Marketing\appsettings.json"> | |||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Services\Ordering\appsettings.json"> | |||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | |||
</Content> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Content Include="Services\Basket\appsettings.json"> | |||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Services\Catalog\appsettings.json"> | |||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Setup\CatalogBrands.csv"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Setup\CatalogItems.csv"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Setup\CatalogItems.zip"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Setup\CatalogTypes.csv"> | |||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Services\Location\appsettings.json"> | |||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Services\Marketing\appsettings.json"> | |||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | |||
</Content> | |||
<Content Include="Services\Ordering\appsettings.json"> | |||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | |||
</Content> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" /> | |||
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.1.0" /> | |||
<PackageReference Include="xunit" Version="2.3.1" /> | |||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" /> | |||
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.1.1" /> | |||
<PackageReference Include="xunit" Version="2.3.1" /> | |||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\..\..\src\Services\Basket\Basket.API\Basket.API.csproj" /> | |||
<ProjectReference Include="..\..\..\src\Services\Catalog\Catalog.API\Catalog.API.csproj" /> | |||
<ProjectReference Include="..\..\..\src\Services\Location\Locations.API\Locations.API.csproj" /> | |||
<ProjectReference Include="..\..\..\src\Services\Marketing\Marketing.API\Marketing.API.csproj" /> | |||
<ProjectReference Include="..\..\..\src\Services\Ordering\Ordering.API\Ordering.API.csproj" /> | |||
<ProjectReference Include="..\..\..\src\Web\WebMVC\WebMVC.csproj" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<ProjectReference Include="..\..\..\src\Services\Basket\Basket.API\Basket.API.csproj" /> | |||
<ProjectReference Include="..\..\..\src\Services\Catalog\Catalog.API\Catalog.API.csproj" /> | |||
<ProjectReference Include="..\..\..\src\Services\Location\Locations.API\Locations.API.csproj" /> | |||
<ProjectReference Include="..\..\..\src\Services\Marketing\Marketing.API\Marketing.API.csproj" /> | |||
<ProjectReference Include="..\..\..\src\Services\Ordering\Ordering.API\Ordering.API.csproj" /> | |||
<ProjectReference Include="..\..\..\src\Web\WebMVC\WebMVC.csproj" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<None Update="Services\Locations\appsettings.json"> | |||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | |||
</None> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<None Update="Services\Locations\appsettings.json"> | |||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | |||
</None> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | |||
</ItemGroup> | |||
<ItemGroup> | |||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | |||
</ItemGroup> | |||
</Project> |