2017-03-07 13:46:27 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2017-03-06 17:00:00 +01:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-11-15 19:02:23 +05:30
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2017-06-14 15:12:40 +02:00
|
|
|
|
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
|
|
|
|
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
|
|
|
|
|
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
|
|
|
|
|
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
|
2017-03-06 17:00:00 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-06-27 15:57:37 +02:00
|
|
|
|
<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>
|
|
|
|
|
|
2017-04-07 16:12:58 +02:00
|
|
|
|
<ItemGroup>
|
2017-10-20 15:29:50 +02:00
|
|
|
|
<Content Include="Services\Basket\appsettings.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Services\Catalog\appsettings.json">
|
2017-04-07 16:12:58 +02:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2018-06-27 15:57:37 +02:00
|
|
|
|
<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\Ordering\appsettings.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2017-04-07 16:12:58 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-03-07 13:46:27 +01:00
|
|
|
|
<ItemGroup>
|
2020-12-14 15:04:25 +01:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
|
2021-01-13 13:14:59 +00:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="5.0.2" />
|
2019-12-16 15:17:41 +00:00
|
|
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
2020-12-14 15:04:25 +01:00
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
|
2019-02-19 12:07:04 +03:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2017-03-07 13:46:27 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-11-18 15:03:28 +00:00
|
|
|
|
<ProjectReference Include="..\..\..\Services\Basket\Basket.API\Basket.API.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\..\Services\Catalog\Catalog.API\Catalog.API.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\..\Services\Ordering\Ordering.API\Ordering.API.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\..\Web\WebMVC\WebMVC.csproj" />
|
2017-03-07 13:46:27 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2017-06-13 17:31:37 +02:00
|
|
|
|
<None Update="Services\Locations\appsettings.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2017-03-07 13:46:27 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-06-05 21:54:03 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-03-06 17:00:00 +01:00
|
|
|
|
</Project>
|