You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
3.3 KiB

7 years ago
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp2.1</TargetFramework>
  4. <GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
  5. <GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
  6. <GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
  7. <GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <Compile Remove="Services\Location\**" />
  11. <Compile Remove="Services\Marketing\**" />
  12. <EmbeddedResource Remove="Services\Location\**" />
  13. <EmbeddedResource Remove="Services\Marketing\**" />
  14. <None Remove="Services\Location\**" />
  15. <None Remove="Services\Marketing\**" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <Compile Include="Services\Location\LocationsScenariosBase.cs" />
  19. <Compile Include="Services\Location\LocationsTestsStartup.cs" />
  20. <Compile Include="Services\Marketing\CampaignScenariosBase.cs" />
  21. <Compile Include="Services\Marketing\UserLocationRoleScenariosBase.cs" />
  22. <Compile Include="Services\Marketing\MarketingScenarios.cs" />
  23. <Compile Include="Services\Marketing\MarketingScenariosBase.cs" />
  24. <Compile Include="Services\Marketing\MarketingTestsStartup.cs" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <Content Include="Services\Basket\appsettings.json">
  28. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  29. </Content>
  30. <Content Include="Services\Catalog\appsettings.json">
  31. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  32. </Content>
  33. <Content Include="Services\Location\appsettings.json">
  34. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  35. </Content>
  36. <Content Include="Services\Marketing\appsettings.json">
  37. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  38. </Content>
  39. </ItemGroup>
  40. <ItemGroup>
  41. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" />
  42. <PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.1.0" />
  43. <PackageReference Include="xunit" Version="2.3.1" />
  44. <PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <ProjectReference Include="..\..\..\src\Services\Basket\Basket.API\Basket.API.csproj" />
  48. <ProjectReference Include="..\..\..\src\Services\Catalog\Catalog.API\Catalog.API.csproj" />
  49. <ProjectReference Include="..\..\..\src\Services\Location\Locations.API\Locations.API.csproj" />
  50. <ProjectReference Include="..\..\..\src\Services\Marketing\Marketing.API\Marketing.API.csproj" />
  51. <ProjectReference Include="..\..\..\src\Services\Ordering\Ordering.API\Ordering.API.csproj" />
  52. <ProjectReference Include="..\..\..\src\Web\WebMVC\WebMVC.csproj" />
  53. </ItemGroup>
  54. <ItemGroup>
  55. <None Update="appsettings.json">
  56. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  57. </None>
  58. <None Update="Services\Locations\appsettings.json">
  59. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  60. </None>
  61. <None Update="Services\Ordering\settings.json">
  62. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  63. </None>
  64. </ItemGroup>
  65. <ItemGroup>
  66. <Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
  67. </ItemGroup>
  68. </Project>