-
Notifications
You must be signed in to change notification settings - Fork 663
Expand file tree
/
Copy pathGitVersion.Cli.Generator.csproj
More file actions
26 lines (23 loc) · 1.11 KB
/
GitVersion.Cli.Generator.csproj
File metadata and controls
26 lines (23 loc) · 1.11 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<IsRoslynComponent>true</IsRoslynComponent>
<PackageScribanIncludeSource>true</PackageScribanIncludeSource>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" PrivateAssets="all" />
<PackageReference Include="PolySharp">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Scriban" IncludeAssets="Build" />
<PackageReference Include="System.Text.Json" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="GitVersion.Cli.Generator.Tests" />
</ItemGroup>
</Project>