-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename and format saml2 authentication
- Loading branch information
Showing
16 changed files
with
333 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# AspNetCore.Authentication.Saml2 | ||
|
||
ASP.NET Core authentication handler for the SAML2 protocol | ||
|
||
[![NuGet](https://img.shields.io/nuget/v/Passingwind.AspNetCore.Authentication.Saml2?style=flat-square)](https://www.nuget.org/packages/Passingwind.AspNetCore.Authentication.Saml2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
src/Authentication.Saml2/source/Passingwind.AspNetCore.Authentication.Saml2.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net6;net7</TargetFrameworks> | ||
<Nullable>enable</Nullable> | ||
<RootNamespace>Passingwind.AspNetCore.Authentication.Saml2</RootNamespace> | ||
<AnalysisLevel>latest-minimum</AnalysisLevel> | ||
<GenerateDocumentationFile>True</GenerateDocumentationFile> | ||
<FileVersion>$(AssemblyVersion)</FileVersion> | ||
<AssemblyVersion>0.1</AssemblyVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<PackageId>Passingwind.AspNetCore.Authentication.Saml2</PackageId> | ||
<Title>Passingwind.AspNetCore.Authentication.Saml2</Title> | ||
<Authors>Passingwind</Authors> | ||
<PackageProjectUrl>https://github.com/jxnkwlp/Passingwind.CommonLibs</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/jxnkwlp/Passingwind.CommonLibs</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageTags>authentication, SAML2</PackageTags> | ||
<Description>ASP.NET Core authentication handler for the SAML2 protocol</Description> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<IncludeSymbols>True</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<PackageVersion>0.1.0</PackageVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="ITfoxtec.Identity.Saml2" Version="4.8.8" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<FrameworkReference Include="Microsoft.AspNetCore.App" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\README.md"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Passingwind.AspNetCore.Authentication.Saml2; | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public static class Saml2Defaults | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public const string AuthenticationScheme = "Saml2"; | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public const string DisplayName = "Saml2"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.