21 lines
730 B
XML
21 lines
730 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<Description>CSharp Analyzers for ASP.NET Core MVC.</Description>
|
|
<PackageTags>aspnetcore;aspnetcoremvc</PackageTags>
|
|
|
|
<TargetFramework>netstandard1.3</TargetFramework>
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
<EnableApiCheck>false</EnableApiCheck>
|
|
<GenerateDocumentationFile>false</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="$(MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion)" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="$(OutputPath)$(AssemblyName).dll" Pack="true" PackagePath="analyzers\dotnet\cs\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|