25 lines
1.2 KiB
XML
25 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<LangVersion>9</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
<IsRoslynComponent>true</IsRoslynComponent>
|
|
<EnableNETAnalyzers>True</EnableNETAnalyzers>
|
|
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
|
|
</PropertyGroup>
|
|
|
|
<!-- The following libraries include the source generator interfaces and types we need -->
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.0.0" PrivateAssets="all" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.9.0" PrivateAssets="all" />
|
|
<PackageReference Include="Scriban" Version="5.4.4" GeneratePathProperty="true" PrivateAssets="all" />
|
|
|
|
<!-- This ensures the library will be packaged as a source generator when we use `dotnet pack` -->
|
|
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
|
|
|
|
<TargetPathWithTargetPlatformMoniker Include="$(PKGScriban)\lib\netstandard2.0\*.dll" IncludeRuntimeDependency="false" />
|
|
</ItemGroup>
|
|
</Project> |