Skip to content

Commit bf05d8e

Browse files
committed
add strong name signing
1 parent f151ae1 commit bf05d8e

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

CommandLine.snk

595 Bytes
Binary file not shown.

src/CommandLine/CommandLine.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
<DefineConstants>$(DefineConstants);CSX_EITHER_INTERNAL;CSX_REM_EITHER_BEYOND_2;CSX_ENUM_INTERNAL;ERRH_INTERNAL;ERRH_DISABLE_INLINE_METHODS;CSX_MAYBE_INTERNAL;CSX_REM_EITHER_FUNC</DefineConstants>
88
<DefineConstants Condition="'$(BuildTarget)' != 'fsharp'">$(DefineConstants);SKIP_FSHARP</DefineConstants>
99
<GenerateDocumentationFile>true</GenerateDocumentationFile>
10+
<AssemblyOriginatorKeyFile>..\..\CommandLine.snk</AssemblyOriginatorKeyFile>
11+
<SignAssembly>true</SignAssembly>
1012
<PackageId Condition="'$(BuildTarget)' != 'fsharp'">CommandLineParser</PackageId>
1113
<PackageId Condition="'$(BuildTarget)' == 'fsharp'">CommandLineParser.FSharp</PackageId>
1214
<Authors>gsscoder;nemec;ericnewton76</Authors>

src/CommandLine/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
using System.Runtime.CompilerServices;
44

5-
[assembly: InternalsVisibleTo("CommandLine.Tests")]
5+
[assembly: InternalsVisibleTo("CommandLine.Tests, PublicKey=002400000480000094000000060200000024000052534131000400000100010015eb7571d696c075627830f9468969103bc35764467bdbccfc0850f2fbe6913ee233d5d7cf3bbcb870fd42e6a8cc846d706b5cef35389e5b90051991ee8b6ed73ee1e19f108e409be69af6219b2e31862405f4b8ba101662fbbb54ba92a35d97664fe65c90c2bebd07aef530b01b709be5ed01b7e4d67a6b01c8643e42a20fb4")]

tests/CommandLine.Tests/CommandLine.Tests.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
<TargetFramework>netcoreapp2.0</TargetFramework>
66
<DefineConstants>$(DefineConstants);PLATFORM_DOTNET</DefineConstants>
77
<DefineConstants Condition="'$(BuildTarget)' != 'fsharp'">$(DefineConstants);SKIP_FSHARP</DefineConstants>
8+
<AssemblyOriginatorKeyFile>..\..\CommandLine.snk</AssemblyOriginatorKeyFile>
9+
<SignAssembly>true</SignAssembly>
810
</PropertyGroup>
911

1012
<ItemGroup Condition="'$(BuildTarget)' != 'fsharp'">

0 commit comments

Comments
 (0)