32 lines
1.0 KiB
XML
32 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<!--
|
|
This project references a shipped version of MVC and should not reference local builds of
|
|
the CodeGeneration targets, rzc, or any of the test shims.
|
|
-->
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<!-- Test Placeholder -->
|
|
|
|
<PropertyGroup Condition="'$(RunningAsTest)' == ''">
|
|
<!-- We don't want to run build server when not running as tests. -->
|
|
<UseRazorBuildServer>false</UseRazorBuildServer>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.App">
|
|
<!-- Avoid exporting types from real MVC that will conflict with the test shim -->
|
|
<PrivateAssets>All</PrivateAssets>
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.1.2">
|
|
<!-- Avoid exporting types from real MVC that will conflict with the test shim -->
|
|
<PrivateAssets>All</PrivateAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|