Skip to content

Commit ee38210

Browse files
committed
Sign the assemblies using the provided key pair
1 parent 8042f11 commit ee38210

File tree

8 files changed

+24
-2
lines changed

8 files changed

+24
-2
lines changed

DG.XrmPluginCore.Abstractions/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 0.0.5 - 5 May 2025
2+
* Add icon to package
3+
* Sign the assembly
4+
15
### 0.0.4 - 29 April 2025
26
* Add AsyncAutoDelete field, and documentation of properties on the config interfaces
37

DG.XrmPluginCore.Abstractions/DG.XrmPluginCore.Abstractions.csproj

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2020
<Version>$([System.IO.File]::ReadAllText("DG.XrmPluginCore.Abstractions/VERSION"))</Version>
2121
<RootNamespace>DG.XrmPluginCore</RootNamespace>
22+
<SignAssembly>True</SignAssembly>
23+
<AssemblyOriginatorKeyFile>../resources/delegate.snk</AssemblyOriginatorKeyFile>
24+
<PackageIcon>delegate.png</PackageIcon>
2225
</PropertyGroup>
2326
<ItemGroup>
2427
<None Include="..\LICENSE">
@@ -29,6 +32,10 @@
2932
<Pack>True</Pack>
3033
<PackagePath>\</PackagePath>
3134
</None>
35+
<None Include="..\resources\delegate.png">
36+
<Pack>True</Pack>
37+
<PackagePath>\</PackagePath>
38+
</None>
3239
</ItemGroup>
3340
<Target Name="UpdateVersion" BeforeTargets="BeforeBuild">
3441
<Exec Command="pwsh -NoProfile -ExecutionPolicy RemoteSigned -File &quot;$(ProjectDir)..\DG.XrmPluginCore\SetVersion.ps1&quot;" />
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.4
1+
0.0.5

DG.XrmPluginCore/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 0.0.7 - 5 May 2025
2+
* Add icon to package
3+
* Sign the assembly
4+
15
### 0.0.6 - 1 May 2025
26
* Fix: Mark base classes (CustomApi and Plugin) as abstract
37

DG.XrmPluginCore/DG.XrmPluginCore.csproj

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
<IncludeSymbols>True</IncludeSymbols>
1818
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1919
<Version>$([System.IO.File]::ReadAllText("DG.XrmPluginCore/VERSION"))</Version>
20+
<PackageIcon>delegate.png</PackageIcon>
21+
<SignAssembly>True</SignAssembly>
22+
<AssemblyOriginatorKeyFile>../resources/delegate.snk</AssemblyOriginatorKeyFile>
2023
</PropertyGroup>
2124
<ItemGroup>
2225
<None Include="..\LICENSE">
@@ -27,6 +30,10 @@
2730
<Pack>True</Pack>
2831
<PackagePath>\</PackagePath>
2932
</None>
33+
<None Include="..\resources\delegate.png">
34+
<Pack>True</Pack>
35+
<PackagePath>\</PackagePath>
36+
</None>
3037
</ItemGroup>
3138
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
3239
<PackageReference Include="Microsoft.CrmSdk.CoreAssemblies" Version="9.0.2.1" />

DG.XrmPluginCore/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.6
1+
0.0.7

resources/delegate.png

8.27 KB
Loading

resources/delegate.snk

596 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)