Skip to content

Commit

Permalink
1.0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
michal-paukert-tfs committed Aug 3, 2023
1 parent 7535537 commit ee13e66
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 24 deletions.
3 changes: 3 additions & 0 deletions SystemWrappers.Core.Registry/Assembly.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
using System.Reflection;

[assembly: AssemblyKeyFileAttribute("../SystemWrapper.snk")]
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../build.props" />

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Version>1.0.0.3</Version>
<AssemblyVersion>1.0.0.3</AssemblyVersion>
<FileVersion>1.0.0.3</FileVersion>
<Version>1.0.0.4</Version>
<AssemblyVersion>1.0.0.4</AssemblyVersion>
<FileVersion>1.0.0.4</FileVersion>
<Nullable>enable</Nullable>
</PropertyGroup>

Expand Down
39 changes: 19 additions & 20 deletions build.props
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
<Project>

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<Project>
<!-- Code quality -->
<PropertyGroup>
<Nullable>enable</Nullable>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<!-- Strong Signing assemblies in Release configuration -->
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)SystemWrapper.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>

</Project>
<Project>

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<Project>
<!-- Code quality -->
<PropertyGroup>
<Nullable>enable</Nullable>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
</PropertyGroup>

<PropertyGroup>
<!-- Strong Signing assemblies in Release configuration -->
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)SystemWrapper.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
</Project>

0 comments on commit ee13e66

Please sign in to comment.