Skip to content

Commit bee1af8

Browse files
authored
Add Strong Name support (#69)
1 parent b9d11c4 commit bee1af8

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

analyzer/CommandLine.Analyzer/CommandLine.Analyzer.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
<IncludeBuildOutput>false</IncludeBuildOutput>
66
<IsPackable>false</IsPackable>
77
<DebugType>full</DebugType>
8+
<SignAssembly>True</SignAssembly>
9+
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)..\..\commandline.snk</AssemblyOriginatorKeyFile>
810
</PropertyGroup>
911

1012
<ItemGroup>

commandline.snk

596 Bytes
Binary file not shown.

src/CommandLine.csproj

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
</PropertyGroup>
88

99
<PropertyGroup>
10-
<AssemblyVersion>2.2.3</AssemblyVersion>
11-
<FileVersion>2.2.3</FileVersion>
10+
<AssemblyVersion>2.3.0</AssemblyVersion>
11+
<FileVersion>2.3.0</FileVersion>
1212
<VersionPrefix>2.2.0</VersionPrefix>
1313
</PropertyGroup>
1414

@@ -25,7 +25,10 @@
2525
<RepositoryType>Git</RepositoryType>
2626
<PackageTags>CommandLine, Command line, Command, Line, parser, objects, custom</PackageTags>
2727
<LangVersion>7.1</LangVersion>
28-
<Version>2.2.2</Version>
28+
<Version>2.3.0</Version>
29+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
30+
<SignAssembly>True</SignAssembly>
31+
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)..\commandline.snk</AssemblyOriginatorKeyFile>
2932
</PropertyGroup>
3033

3134
<ItemGroup>
@@ -37,7 +40,7 @@
3740
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3841
<PrivateAssets>all</PrivateAssets>
3942
</PackageReference>
40-
<PackageReference Include="OutputColorizer" Version="2.0.0" />
43+
<PackageReference Include="OutputColorizer" Version="2.1.0" />
4144
</ItemGroup>
4245

4346
<ItemGroup Condition="'$(TargetFramework)' != 'net45'">

0 commit comments

Comments
 (0)