70 lines
4.5 KiB
XML
70 lines
4.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\..\src\Microsoft.AspNetCore.Mvc.Testing\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Testing.targets" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>$(StandardTestTfms)</TargetFrameworks>
|
|
<PlatformTarget Condition=" '$(TargetFramework)' == 'netcoreapp2.1' "></PlatformTarget>
|
|
|
|
<DefineConstants Condition="'$(GenerateBaselines)'=='true'">$(DefineConstants);GENERATE_BASELINES</DefineConstants>
|
|
<DefineConstants>$(DefineConstants);__RemoveThisBitTo__GENERATE_BASELINES</DefineConstants>
|
|
<DefineConstants>$(DefineConstants);FUNCTIONAL_TESTS</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\Microsoft.AspNetCore.Mvc.Formatters.Xml.Test\XmlAssert.cs" />
|
|
<EmbeddedResource Include="compiler\resources\**\*" />
|
|
<None Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- For testing the testing infrastructure only -->
|
|
<WebApplicationFactoryContentRootAttribute
|
|
Include="BasicWebSite"
|
|
AssemblyName="BasicWebsite"
|
|
ContentRootPath="../../../../WebSites/BasicWebSite"
|
|
ContentRootTest="BasicWebSite.csproj"
|
|
Priority="-1" />
|
|
<!-- For testing the testing infrastructure only. This attribute is
|
|
incorrect by design to ensure that the infrastructure falls back. -->
|
|
<WebApplicationFactoryContentRootAttribute
|
|
Include="FiltersWebSite"
|
|
AssemblyName="FiltersWebSite"
|
|
ContentRootPath="/../WebSites/FiltersWebSite"
|
|
ContentRootTest="Incorrect.csproj"
|
|
Priority="-1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.Mvc.Testing\Microsoft.AspNetCore.Mvc.Testing.csproj" />
|
|
<ProjectReference Include="..\WebSites\ApiExplorerWebSite\ApiExplorerWebSite.csproj" />
|
|
<ProjectReference Include="..\WebSites\ApplicationModelWebSite\ApplicationModelWebSite.csproj" />
|
|
<ProjectReference Include="..\WebSites\BasicWebSite\BasicWebSite.csproj" />
|
|
<ProjectReference Include="..\WebSites\ControllersFromServicesWebSite\ControllersFromServicesWebSite.csproj" />
|
|
<ProjectReference Include="..\WebSites\CorsWebSite\CorsWebSite.csproj" />
|
|
<ProjectReference Include="..\WebSites\ErrorPageMiddlewareWebSite\ErrorPageMiddlewareWebSite.csproj" />
|
|
<ProjectReference Include="..\WebSites\FilesWebSite\FilesWebSite.csproj" />
|
|
<ProjectReference Include="..\WebSites\FormatterWebSite\FormatterWebSite.csproj" />
|
|
<ProjectReference Include="..\WebSites\HtmlGenerationWebSite\HtmlGenerationWebSite.csproj" />
|
|
<ProjectReference Include="..\Microsoft.AspNetCore.Mvc.TestCommon\Microsoft.AspNetCore.Mvc.TestCommon.csproj" />
|
|
<ProjectReference Include="..\..\samples\MvcSandbox\MvcSandbox.csproj" />
|
|
<ProjectReference Include="..\WebSites\RazorBuildWebSite\RazorBuildWebSite.csproj" />
|
|
<ProjectReference Include="..\WebSites\RazorPageExecutionInstrumentationWebSite\RazorPageExecutionInstrumentationWebSite.csproj" />
|
|
<ProjectReference Include="..\WebSites\RazorPagesWebSite\RazorPagesWebSite.csproj" />
|
|
<ProjectReference Include="..\WebSites\RazorWebSite\RazorWebSite.csproj" />
|
|
<ProjectReference Include="..\WebSites\RoutingWebSite\RoutingWebSite.csproj" />
|
|
<ProjectReference Include="..\WebSites\SecurityWebSite\SecurityWebSite.csproj" />
|
|
<ProjectReference Include="..\WebSites\SimpleWebSite\SimpleWebSite.csproj" />
|
|
<ProjectReference Include="..\WebSites\TagHelpersWebSite\TagHelpersWebSite.csproj" />
|
|
<ProjectReference Include="..\WebSites\VersioningWebSite\VersioningWebSite.csproj" />
|
|
<ProjectReference Include="..\WebSites\WebApiCompatShimWebSite\WebApiCompatShimWebSite.csproj" />
|
|
<ProjectReference Include="..\WebSites\XmlFormattersWebSite\XmlFormattersWebSite.csproj" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.ChunkingCookieManager.Sources" PrivateAssets="All" Version="$(MicrosoftAspNetCoreChunkingCookieManagerSourcesPackageVersion)" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Http" Version="$(MicrosoftAspNetCoreHttpPackageVersion)" />
|
|
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="$(MicrosoftAspNetCoreTestHostPackageVersion)" />
|
|
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="$(MicrosoftAspNetCoreWebUtilitiesPackageVersion)" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="$(MicrosoftExtensionsConfigurationJsonPackageVersion)" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Testing" Version="$(MicrosoftExtensionsLoggingTestingPackageVersion)" />
|
|
</ItemGroup>
|
|
</Project>
|