Sign assemblies with strong name (#229)

Co-authored-by: Simon Blume <s.blume@it-frankfurt.com>
This commit is contained in:
Simon Blume
2022-12-02 13:46:59 +01:00
committed by GitHub
parent d9d96bb7cc
commit fa4199edd0
2 changed files with 4 additions and 4 deletions

View File

@@ -7,8 +7,8 @@
<RootNamespace>Spring</RootNamespace>
<AssemblyOriginatorKeyFile>..\..\..\Spring.Net.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
<SignAssembly>True</SignAssembly>
<Deterministic>true</Deterministic>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>

View File

@@ -3,6 +3,9 @@
<TargetFrameworks>netstandard2.0;$(TargetFullFrameworkVersion)</TargetFrameworks>
<Description>Interfaces and classes that provide MSMQ 3.0 support in Spring.Net</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Experimental.System.Messaging.Signed" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Spring.Core\Spring.Core.csproj" />
<ProjectReference Include="..\Spring.Data\Spring.Data.csproj" />
@@ -11,7 +14,4 @@
<Reference Include="System.Messaging" />
<Reference Include="System.Transactions" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Experimental.System.Messaging" Version="1.1.0" />
</ItemGroup>
</Project>