Skip to content

Commit 16f1889

Browse files
committed
adding strongname key support #47
1 parent 0c08eec commit 16f1889

File tree

6 files changed

+19
-0
lines changed

6 files changed

+19
-0
lines changed

.config/dotnet-tools.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"version": 1,
3+
"isRoot": true,
4+
"tools": {
5+
"nbgv": {
6+
"version": "3.5.119",
7+
"commands": [
8+
"nbgv"
9+
]
10+
}
11+
}
12+
}

GetText.NET.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ EndProject
1212
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B2C3CAAC-6C5B-48C2-9895-964882670F4D}"
1313
ProjectSection(SolutionItems) = preProject
1414
.editorconfig = .editorconfig
15+
gettext.snk = gettext.snk
1516
LICENSE = LICENSE
1617
README.md = README.md
1718
ReleaseNotes.md = ReleaseNotes.md

gettext.snk

596 Bytes
Binary file not shown.

src/GetText.PluralCompile/GetText.PluralCompile.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
<TargetFramework>netstandard2.0</TargetFramework>
77
<AssemblyName>GetText.PluralCompile</AssemblyName>
88
<PackageId>GetText.NET.PluralCompile</PackageId>
9+
<SignAssembly>True</SignAssembly>
10+
<AssemblyOriginatorKeyFile>..\..\gettext.snk</AssemblyOriginatorKeyFile>
911
</PropertyGroup>
1012

1113
<ItemGroup>

src/GetText.WindowsForms/GetText.WindowsForms.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
<UseWindowsForms>true</UseWindowsForms>
88
<AssemblyName>GetText.WindowsForms</AssemblyName>
99
<PackageId>GetText.NET.WindowsForms</PackageId>
10+
<SignAssembly>True</SignAssembly>
11+
<AssemblyOriginatorKeyFile>..\..\gettext.snk</AssemblyOriginatorKeyFile>
1012
</PropertyGroup>
1113

1214
<ItemGroup>

src/GetText/GetText.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
<TargetFramework>netstandard2.0</TargetFramework>
77
<AssemblyName>GetText</AssemblyName>
88
<PackageId>GetText.NET</PackageId>
9+
<SignAssembly>True</SignAssembly>
10+
<AssemblyOriginatorKeyFile>..\..\gettext.snk</AssemblyOriginatorKeyFile>
911
</PropertyGroup>
1012

1113
<ItemGroup>

0 commit comments

Comments
 (0)