Skip to content

Commit

Permalink
Add NoBuild option for PackNuget build action to preserve strongnames (
Browse files Browse the repository at this point in the history
  • Loading branch information
andriizhegurov-okta authored Oct 5, 2021
1 parent 9c6e6e5 commit f2d9ba9
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 12 deletions.
12 changes: 9 additions & 3 deletions Okta.AspNet.Abstractions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
# Changelog
Running changelog of releases since `3.0.5`

## v3.2.1
## v3.2.2

### Bug Fix

- Fix issue with strong name signature introduced in 3.2.1.

## v3.2.1

### Features

- Add strong name signature
- Add strong name signature.

## v3.2.0

Expand All @@ -25,4 +31,4 @@ Running changelog of releases since `3.0.5`

### Bug Fixes

- Update `WebApiOptions` validator to throw when the Org AS is configured. The Org AS is not supported for Web API.
- Update `WebApiOptions` validator to throw when the Org AS is configured. The Org AS is not supported for Web API.
6 changes: 3 additions & 3 deletions Okta.AspNet.Abstractions/Okta.AspNet.Abstractions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFrameworks>net452;netstandard2.0</TargetFrameworks>
<Version>3.2.1</Version>
<Version>3.2.2</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down Expand Up @@ -36,8 +36,8 @@
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>okta.aspnet.public.snk</AssemblyOriginatorKeyFile>
<DelaySign>true</DelaySign>
<AssemblyVersion>3.2.1.0</AssemblyVersion>
<FileVersion>3.2.1.0</FileVersion>
<AssemblyVersion>3.2.2.0</AssemblyVersion>
<FileVersion>3.2.2.0</FileVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
12 changes: 9 additions & 3 deletions Okta.AspNet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
# Changelog
Running changelog of releases since `1.6.0`

## v1.8.1
## v1.8.2

### Bug Fix

- Fix issue with strong name signature introduced in 1.8.1.

## v1.8.1

### Features

- Add strong name signature
- Add strong name signature.

## v1.8.0

Expand All @@ -28,4 +34,4 @@ Running changelog of releases since `1.6.0`

### Features

- Expose `AuthenticationFailed` event.
- Expose `AuthenticationFailed` event.
6 changes: 3 additions & 3 deletions Okta.AspNet/Okta.AspNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Description>Official Okta middleware for ASP.NET 4.5+. Easily add authentication and authorization to ASP.NET applications.</Description>
<Copyright>(c) 2019 Okta, Inc.</Copyright>
<Version>1.8.1</Version>
<Version>1.8.2</Version>
<Authors>Okta, Inc.</Authors>
<TargetFramework>net452</TargetFramework>
<AssemblyName>Okta.AspNet</AssemblyName>
Expand All @@ -29,8 +29,8 @@

<PropertyGroup>
<CodeAnalysisRuleSet>..\OktaSdk.ruleset</CodeAnalysisRuleSet>
<AssemblyVersion>1.8.1.0</AssemblyVersion>
<FileVersion>1.8.1.0</FileVersion>
<AssemblyVersion>1.8.2.0</AssemblyVersion>
<FileVersion>1.8.2.0</FileVersion>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>okta.aspnet.public.snk</AssemblyOriginatorKeyFile>
<DelaySign>true</DelaySign>
Expand Down
1 change: 1 addition & 0 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ Task("PackNuget")
{
Configuration = configuration,
OutputDirectory = "./artifacts",
NoBuild = true,
});
}
});
Expand Down

0 comments on commit f2d9ba9

Please sign in to comment.