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.

78 lines
3.3 KiB

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