Skip to content

Commit e308165

Browse files
authored
Enable strong name signing (#142)
* enable strong name signing * pass solution directory as a parameter in the test script
1 parent e019ab8 commit e308165

File tree

7 files changed

+7
-2
lines changed

7 files changed

+7
-2
lines changed

extensions/Oryx.NewtonsoftJson/Oryx.NewtonsoftJson.fsproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<Copyright>Cognite AS</Copyright>
1010
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1111
<AssemblyOriginatorKeyFile>$(SolutionDir)/strong_name.snk</AssemblyOriginatorKeyFile>
12+
<SignAssembly>True</SignAssembly>
1213
</PropertyGroup>
1314

1415
<ItemGroup>

extensions/Oryx.Protobuf/Oryx.Protobuf.fsproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<Copyright>Cognite AS</Copyright>
1010
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1111
<AssemblyOriginatorKeyFile>$(SolutionDir)/strong_name.snk</AssemblyOriginatorKeyFile>
12+
<SignAssembly>True</SignAssembly>
1213
</PropertyGroup>
1314

1415
<ItemGroup>

extensions/Oryx.SystemTextJson/Oryx.SystemTextJson.fsproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<Copyright>Cognite AS</Copyright>
1111
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1212
<AssemblyOriginatorKeyFile>$(SolutionDir)/strong_name.snk</AssemblyOriginatorKeyFile>
13+
<SignAssembly>True</SignAssembly>
1314
</PropertyGroup>
1415
<ItemGroup>
1516
<Compile Include="JsonPushStreamContent.fs" />

extensions/Oryx.ThothJsonNet/Oryx.ThothJsonNet.fsproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<Copyright>Cognite AS</Copyright>
1010
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1111
<AssemblyOriginatorKeyFile>$(SolutionDir)/strong_name.snk</AssemblyOriginatorKeyFile>
12+
<SignAssembly>True</SignAssembly>
1213
</PropertyGroup>
1314

1415
<ItemGroup>

src/Oryx.fsproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<Copyright>Cognite AS</Copyright>
1010
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1111
<AssemblyOriginatorKeyFile>$(SolutionDir)/strong_name.snk</AssemblyOriginatorKeyFile>
12+
<SignAssembly>True</SignAssembly>
1213
</PropertyGroup>
1314

1415
<ItemGroup>

test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
dotnet test test /p:Include="[Oryx]*" /p:CollectCoverage=true /p:CoverletOutputFormat=lcov /p:CoverletOutput='../coverage.lcov'
2+
dotnet test test /p:Include="[Oryx]*" /p:CollectCoverage=true /p:CoverletOutputFormat=lcov /p:CoverletOutput='../coverage.lcov' /p:SolutionDir=$(pwd)

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.4.2
1+
5.4.3

0 commit comments

Comments
 (0)