aspnetcore/src/Mvc/test/WebSites/BasicWebSite/BasicWebSite.csproj

35 lines
1.5 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFrameworks>$(StandardTestWebsiteTfms)</TargetFrameworks>
<IsTestAssetProject>true</IsTestAssetProject>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\Common\TestResponseGenerator.cs" Link="TestResponseGenerator.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.AspNetCore.Mvc" />
<Reference Include="Microsoft.AspNetCore.Mvc.Formatters.Xml" />
<Reference Include="Microsoft.AspNetCore.Authentication" />
<Reference Include="Microsoft.AspNetCore.Localization.Routing" />
<!--
Explicitly referencing routing here to make it easy to integrate breaking changes. Localization.Routing brings in a transitive
reference to routing, which makes it hard to work with builds from a feature branch.
-->
<Reference Include="Microsoft.AspNetCore.Routing.Abstractions" NoWarn="NU1605" />
<Reference Include="Microsoft.AspNetCore.Routing" NoWarn="NU1605" />
<Reference Include="Microsoft.AspNetCore.Server.IISIntegration" />
<Reference Include="Microsoft.AspNetCore.Server.Kestrel" />
<Reference Include="Microsoft.AspNetCore.Session" />
<Reference Include="Microsoft.AspNetCore.StaticFiles" />
<Reference Include="Microsoft.AspNetCore.Diagnostics" />
<Reference Include="Microsoft.AspNetCore.CookiePolicy" />
<PackageReference Include="Microsoft.NET.Sdk.Razor" Version="$(MicrosoftNETSdkRazorPackageVersion)" PrivateAssets="All" />
</ItemGroup>
</Project>