mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-15 00:12:50 +08:00
33 lines
1.4 KiB
XML
33 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Description>Best practice analyzers for Spectre.Console.</Description>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<IsPackable>true</IsPackable>
|
|
<DevelopmentDependency>true</DevelopmentDependency>
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
<Nullable>enable</Nullable>
|
|
<NoPackageAnalysis>true</NoPackageAnalysis>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<AdditionalFiles Include="..\stylecop.json" Link="Properties/stylecop.json" />
|
|
<None Include="../../resources/gfx/small-logo.png" Pack="true" PackagePath="\" Link="Properties/small-logo.png" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.3" PrivateAssets="all" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.4.0" PrivateAssets="all" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.2.0" PrivateAssets="all" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.2.0" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="bin\Debug\netstandard2.0\\Spectre.Console.Analyzer.dll" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
|
|
</ItemGroup>
|
|
</Project>
|