-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: duende version BREAKING CHANGE: Support Duende
- Loading branch information
1 parent
7cd3494
commit d09949a
Showing
479 changed files
with
34,077 additions
and
260 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,9 +32,15 @@ jobs: | |
# Setup .NET Core SDK | ||
- name: Setup .NET Core SDK | ||
uses: actions/[email protected] | ||
# Run update depencies script | ||
- name: Update dependencies | ||
working-directory: TheIdServer | ||
# Run update IS4 depencies script | ||
- name: Update IS4 dependencies | ||
working-directory: TheIdServer.IS4 | ||
run: ./update-dependencies.ps1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PAT }} | ||
# Run update Duende depencies script | ||
- name: Update Duende dependencies | ||
working-directory: TheIdServer.Duende | ||
run: ./update-dependencies.ps1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PAT }} |
File renamed without changes.
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 @@ | ||
{ | ||
"$schema": "http://json.schemastore.org/TIS.Duende", | ||
"author": "Olivier Lefebvre", | ||
"classifications": ["TheIdServer"], | ||
"name": "TheIdServer.Duende", | ||
"identity": "TheIdServer.Duende", | ||
"shortName": "tisduende", | ||
"tags": { | ||
"language": "C#" | ||
}, | ||
"sourceName": "TIS", | ||
"preferNameDirectory": true, | ||
"symbols": { | ||
"skipRestore": { | ||
"type": "parameter", | ||
"datatype": "bool", | ||
"description": "Skip restore packages", | ||
"defaultValue": "false" | ||
} | ||
}, | ||
"sources": [ | ||
{ | ||
"modifiers": [ | ||
{ | ||
"exclude": [ | ||
".vs/**", | ||
".git/**", | ||
"doc/**", | ||
"coverage/**", | ||
"ReportGenerator/**", | ||
"**/TestResults/**" | ||
] | ||
} | ||
] | ||
} | ||
], | ||
"primaryOutputs": [ | ||
{ | ||
"path": "TIS.sln" | ||
} | ||
], | ||
"postActions": [{ | ||
"condition": "(!skipRestore)", | ||
"description": "Restore NuGet packages required by this project.", | ||
"manualInstructions": [ | ||
{ "text": "Run 'dotnet restore'" } | ||
], | ||
"actionId": "210D431B-A78B-4D2F-B762-4ED3E3EA9025", | ||
"continueOnError": true | ||
}] | ||
} |
File renamed without changes.
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,3 @@ | ||
# TheIdServer Duende IdentityServer version | ||
|
||
You'll need to acquire a license from Duende for a commercial use. Please visit https://duendesoftware.com/products/identityserver |
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
File renamed without changes.
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,23 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<PackageType>Template</PackageType> | ||
<PackageVersion>1.0</PackageVersion> | ||
<PackageId>TheIdServer.Duende.Template</PackageId> | ||
<Title>TheIdServer Duende IdentityServer Template</Title> | ||
<Authors>Olivier Lefebvre</Authors> | ||
<Description>Template to create a TheIdServer for Duende IdentityServer solution.</Description> | ||
<PackageTags>dotnet-new;templates;theidserver;duende-identityserver;oidc;ws-federation;oauth;identity;authentication;security;iam</PackageTags> | ||
<TargetFramework>net5.0</TargetFramework> | ||
|
||
<IncludeContentInPack>true</IncludeContentInPack> | ||
<IncludeBuildOutput>false</IncludeBuildOutput> | ||
<ContentTargetFolders>content</ContentTargetFolders> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Content Include="**\*" Exclude="**\bin\**;**\obj\**;**\*.csproj.user;**\.vs\**;**\TIS.db;update-dependencies.ps1;update-dependencies.cmd;TIS.sln.licenseheader;Template.csproj" /> | ||
<Compile Remove="**\*" /> | ||
</ItemGroup> | ||
|
||
</Project> |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
TheIdServer/src/TIS.BlazorApp/App.razor.cs → ...ver.Duende/src/TIS.BlazorApp/App.razor.cs
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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
TheIdServer/src/TIS.BlazorApp/Program.cs → ...erver.Duende/src/TIS.BlazorApp/Program.cs
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...src/TIS.BlazorApp/Shared/NavMenu.razor.cs → ...src/TIS.BlazorApp/Shared/NavMenu.razor.cs
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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...BlazorApp/Shared/RedirectToLogin.razor.cs → ...BlazorApp/Shared/RedirectToLogin.razor.cs
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
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
.../Areas/Identity/IdentityHostingStartup.cs → .../Areas/Identity/IdentityHostingStartup.cs
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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...tity/Pages/Account/ConfirmEmail.cshtml.cs → ...tity/Pages/Account/ConfirmEmail.cshtml.cs
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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ages/Account/ConfirmEmailChange.cshtml.cs → ...ages/Account/ConfirmEmailChange.cshtml.cs
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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ity/Pages/Account/ExternalLogin.cshtml.cs → ...ity/Pages/Account/ExternalLogin.cshtml.cs
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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ty/Pages/Account/ForgotPassword.cshtml.cs → ...ty/Pages/Account/ForgotPassword.cshtml.cs
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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ount/ForgotPasswordConfirmation.cshtml.cs → ...ount/ForgotPasswordConfirmation.cshtml.cs
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
File renamed without changes.
Oops, something went wrong.