Skip to content

Commit

Permalink
Enable assembly signing (#10)
Browse files Browse the repository at this point in the history
The keyfile is intentionally included based on Microsoft's advice:

> If you are an open-source developer and you want the identity benefits of a
> strong-named assembly, consider checking in the private key associated with
> an assembly into your source control system.
  • Loading branch information
22222 committed Sep 1, 2019
1 parent 6e25921 commit 490414a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CsvTextFieldParser/CsvTextFieldParser.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<FileVersion>0.0.0.0</FileVersion>
<LangVersion>6</LangVersion>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>keyfile.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Include="stylecop.json" />
Expand Down
Binary file added CsvTextFieldParser/keyfile.snk
Binary file not shown.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 1.2.1
version: 1.2.2-preview
skip_tags: true
image: Visual Studio 2017
image: Visual Studio 2019
configuration: Release
platform: Any CPU
dotnet_csproj:
Expand Down

0 comments on commit 490414a

Please sign in to comment.