<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>netcoreapp2.0</TargetFramework> <GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles> <!--<AssetTargetFallback>$(AssetTargetFallback);portable-net45+win8+wp8+wpa81;</AssetTargetFallback>--> <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 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="Services\Location\appsettings.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> <Content Include="Services\Marketing\appsettings.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> </ItemGroup> <ItemGroup> <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" /> <PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.0.0" /> <PackageReference Include="xunit" Version="2.3.0" /> <PackageReference Include="xunit.runner.visualstudio" Version="2.3.0" /> </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="appsettings.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> <None Update="Services\Locations\appsettings.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> <None Update="Services\Ordering\settings.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> </ItemGroup> <ItemGroup> <Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> </ItemGroup> </Project>