aspnetcore/testapps/ApplicationWithRazorSdkUsed/ApplicationWithRazorSdkUsed...

26 lines
1.2 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<!-- The Web SDK turns this on my default. Setting it back to empty to simulate the 2.1 default -->
<MvcRazorCompileOnPublish></MvcRazorCompileOnPublish>
<TargetFrameworks>$(StandardTestAppTfms)</TargetFrameworks>
<!-- This will become the default for 2.1 soon -->
<RazorCompileOnPublish>true</RazorCompileOnPublish>
<!-- Use a different filename so we can tell the difference -->
<RazorTargetName>ApplicationWithRazorSdkUsed.Views</RazorTargetName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="$(MicrosoftAspNetCoreMvcPackageVersion)" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="$(MicrosoftAspNetCoreRazorDesignPackageVersion)" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="$(MicrosoftAspNetCoreServerKestrelPackageVersion)" />
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="$(MicrosoftExtensionsConfigurationCommandLinePackageVersion)" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="$(MicrosoftExtensionsLoggingConsolePackageVersion)" />
</ItemGroup>
</Project>