Skip to content

Commit

Permalink
Merge pull request #8 from NinjaRocks/release/v2.0.0
Browse files Browse the repository at this point in the history
Upgrade to .Net 6.0
  • Loading branch information
NinjaRocks authored Jun 27, 2023
2 parents 470fd46 + e699b2d commit 05ae79c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
next-version: 1.0.5
next-version: 2.0.0
tag-prefix: '[vV]'
mode: ContinuousDeployment
branches:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# <img src="https://github.com/NinjaRocks/Secure.SAML/blob/master/ninja-icon-16.png" alt="ninja" style="width:30px;"/> Secure.SAML
# <img src="https://github.com/NinjaRocks/Secure.SAML/blob/master/ninja-icon-16.png" alt="ninja" style="width:30px;"/> Secure.SAML v2.0.0
[![NuGet version](https://badge.fury.io/nu/Secure.SAML.svg)](https://badge.fury.io/nu/Secure.SAML) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/NinjaRocks/Secure.SAML/blob/master/License.md) [![CI](https://github.com/NinjaRocks/Secure.SAML/actions/workflows/CI-Build.yml/badge.svg)](https://github.com/NinjaRocks/Secure.SAML/actions/workflows/CI-Build.yml) [![GitHub Release](https://img.shields.io/github/v/release/ninjarocks/Secure.SAML?logo=github&sort=semver)](https://github.com/ninjarocks/Secure.SAML/releases/latest)
[![CodeQL](https://github.com/NinjaRocks/Secure.SAML/actions/workflows/codeql.yml/badge.svg)](https://github.com/NinjaRocks/Secure.SAML/actions/workflows/codeql.yml) [![.Net Stardard](https://img.shields.io/badge/.Net%20Standard-2.1-blue)](https://dotnet.microsoft.com/en-us/download/dotnet/2.1)
[![CodeQL](https://github.com/NinjaRocks/Secure.SAML/actions/workflows/codeql.yml/badge.svg)](https://github.com/NinjaRocks/Secure.SAML/actions/workflows/codeql.yml) [![.Net 6.0](https://img.shields.io/badge/.Net%206.0-blue)](https://dotnet.microsoft.com/en-us/download/dotnet/6)

.Net library to generate signed SAML 2.0 Response for parameters below-

Expand Down
15 changes: 8 additions & 7 deletions src/Secure.SAML/Secure.SAML.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<OutputType>Library</OutputType>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
Expand All @@ -21,16 +21,17 @@
<Description>.Net library to generate signed SAML 2.0 Response.</Description>
<PackageTags>SAML; SAML Response; SHA1 SAML; SHA256 SAML; SHA512 SAML; SAML Assertion;</PackageTags>
<AssemblyVersion>1.0.5</AssemblyVersion>
<Version>1.0.5</Version>
<Version>2.0.0</Version>
<PackageIcon>ninja-icon-16.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>GIT</RepositoryType>
<PackageReleaseNotes>Release Notes : SAML utility to create SAML 2.0 Response
* Supported Signing Algorithms - SHA1, SHA256, SHA512
* Signs Assertion or Response.
* Outputs Base64string or XMLDocument.</PackageReleaseNotes>
<PackageReleaseNotes>Release Notes:
.Net utility to create SAML 2.0 Response
* Supported Signing Algorithms - SHA1, SHA256, SHA512
* Signs Assertion or Response.
* Outputs Base64 string or XMLDocument.</PackageReleaseNotes>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<FileVersion>1.0.5</FileVersion>
<FileVersion>2.0.0</FileVersion>
<PackAsTool>False</PackAsTool>
</PropertyGroup>

Expand Down

0 comments on commit 05ae79c

Please sign in to comment.