19 lines
616 B
XML
19 lines
616 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Description>Microsoft Build Tasks supporting Razor view compilation.</Description>
|
|
<TargetFrameworks>netstandard2.0</TargetFrameworks>
|
|
<IsPackable>false</IsPackable>
|
|
<EnableApiCheck>false</EnableApiCheck>
|
|
|
|
<UseLatestPackageReferences>true</UseLatestPackageReferences>
|
|
<IsImplementationProject>false</IsImplementationProject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.Build.Tasks.Core" />
|
|
<Reference Include="Microsoft.Extensions.CommandLineUtils.Sources" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|