-
Notifications
You must be signed in to change notification settings - Fork 0
/
StaticGenerator.csproj
27 lines (24 loc) · 1.21 KB
/
StaticGenerator.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk">
<!-- Project Settings -->
<PropertyGroup>
<LangVersion>preview</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<TargetFramework>netstandard2.0</TargetFramework>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AssemblyName>HLNC.SourceGenerators</AssemblyName>
<RootNamespace>HLNC.SourceGenerators</RootNamespace>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<PackageScribanIncludeSource>true</PackageScribanIncludeSource>
</PropertyGroup>
<ItemGroup>
<None Include="Package\build\$(AssemblyName).targets" Pack="true" PackagePath="build" />
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers\dotnet\cs" Link="Package\analyzers\dotnet\cs\$(AssemblyName).dll" />
<EmbeddedResource Include="**\*.sbncs" />
</ItemGroup>
<!-- Package References -->
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" PrivateAssets="all" />
<PackageReference Include="Scriban" Version="5.10.0" IncludeAssets="build" PrivateAssets="all" />
</ItemGroup>
</Project>