Skip to content

Commit fa4199e

Browse files
kales5Simon Blume
andauthored
Sign assemblies with strong name (#229)
Co-authored-by: Simon Blume <[email protected]>
1 parent d9d96bb commit fa4199e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<RootNamespace>Spring</RootNamespace>
88

99
<AssemblyOriginatorKeyFile>..\..\..\Spring.Net.snk</AssemblyOriginatorKeyFile>
10-
1110
<DelaySign>false</DelaySign>
11+
<SignAssembly>True</SignAssembly>
1212
<Deterministic>true</Deterministic>
1313

1414
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>

src/Spring/Spring.Messaging/Spring.Messaging.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
<TargetFrameworks>netstandard2.0;$(TargetFullFrameworkVersion)</TargetFrameworks>
44
<Description>Interfaces and classes that provide MSMQ 3.0 support in Spring.Net</Description>
55
</PropertyGroup>
6+
<ItemGroup>
7+
<PackageReference Include="Experimental.System.Messaging.Signed" Version="1.0.0" />
8+
</ItemGroup>
69
<ItemGroup>
710
<ProjectReference Include="..\Spring.Core\Spring.Core.csproj" />
811
<ProjectReference Include="..\Spring.Data\Spring.Data.csproj" />
@@ -11,7 +14,4 @@
1114
<Reference Include="System.Messaging" />
1215
<Reference Include="System.Transactions" />
1316
</ItemGroup>
14-
<ItemGroup>
15-
<PackageReference Include="Experimental.System.Messaging" Version="1.1.0" />
16-
</ItemGroup>
1717
</Project>

0 commit comments

Comments
 (0)