Skip to content
This repository was archived by the owner on Mar 16, 2026. It is now read-only.

Commit 443c2a6

Browse files
authored
Releases/v6.0 (#1)
* fixed assembly names * Update azure-pipelines.yml
1 parent 09dcf21 commit 443c2a6

841 files changed

Lines changed: 2651 additions & 2712 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.config/dotnet-tools.json

Lines changed: 0 additions & 18 deletions
This file was deleted.

IdentityServer.sln.DotSettings

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
2+
<s:Boolean x:Key="/Default/UserDictionary/Words/=Dbosoft/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>

SECURITY.MD

Lines changed: 0 additions & 7 deletions
This file was deleted.

azure-pipelines.yml

Lines changed: 45 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
# Starter pipeline
23
# Start with a minimal pipeline that you can customize to build and deploy your code.
34
# Add steps that build, run tests, deploy, and more:
@@ -7,13 +8,50 @@ trigger:
78
- main
89

910
pool:
10-
vmImage: ubuntu-latest
11+
vmImage: windows-2022
12+
13+
variables:
14+
buildConfiguration: 'Release'
1115

1216
steps:
13-
- script: echo Hello, world!
14-
displayName: 'Run a one-line script'
17+
- task: UseGitVersion@5
18+
inputs:
19+
versionSpec: '5.x'
20+
21+
- task: DotNetCoreCLI@2
22+
displayName: dotnet restore
23+
inputs:
24+
command: 'restore'
1525

16-
- script: |
17-
echo Add other tasks to build, test, and deploy your project.
18-
echo See https://aka.ms/yaml
19-
displayName: 'Run a multi-line script'
26+
- task: DotNetCoreCLI@2
27+
displayName: dotnet build
28+
inputs:
29+
command: build
30+
projects: '**/*.csproj'
31+
arguments: '--configuration $(buildConfiguration) --no-restore'
32+
33+
- task: DotNetCoreCLI@2
34+
displayName: dotnet test
35+
inputs:
36+
command: test
37+
projects: 'tests/**/*.csproj'
38+
arguments: '--configuration $(buildConfiguration) --collect "Code coverage" --no-build'
39+
40+
- task: DotNetCoreCLI@2
41+
displayName: dotnet pack
42+
inputs:
43+
command: pack
44+
arguments: '--configuration $(BuildConfiguration) --output $(Build.ArtifactStagingDirectory) --no-build'
45+
46+
- task: PublishBuildArtifacts@1
47+
displayName: publish artifacts
48+
inputs:
49+
ArtifactName: drop
50+
51+
- task: NuGetCommand@2
52+
displayName: publish to project nuget repo
53+
inputs:
54+
command: 'push'
55+
packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg'
56+
nuGetFeedType: 'internal'
57+
publishVstsFeed: '59a3608a-9bed-4cb4-9467-6efaaa3cbef5/1e425ef4-e3a0-4927-b4c0-2beff753cb88'

gitversion.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
assembly-versioning-scheme: MajorMinorPatch
2+
mode: ContinuousDeployment
3+
branches: {}
4+
ignore:
5+
sha: []
6+
merge-message-formats: {}

signClient.json

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<Company>dbosoft GmbH</Company>
1212
<Product>dbosoft IdentityServer</Product>
1313
<RepositoryUrl>https://github.com/dbosoft/IdentityServer</RepositoryUrl>
14-
<AssemblyName>dbosoft.$(MSBuildProjectName)</AssemblyName>
15-
<RootNamespace>dbosoft.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
14+
<AssemblyName>Dbosoft.$(MSBuildProjectName)</AssemblyName>
15+
<RootNamespace>Dbosoft.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
1616

1717
<!-- Declare that the Repository URL can be published to NuSpec -->
1818
<PublishRepositoryUrl>true</PublishRepositoryUrl>

src/IdentityServer.AspNetIdentity/Decorator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
using System;
66

7-
namespace dbosoft.IdentityServer.AspNetIdentity
7+
namespace Dbosoft.IdentityServer.AspNetIdentity
88
{
99
internal class Decorator<TService>
1010
{

src/IdentityServer.AspNetIdentity/IdentityServer.AspNetIdentity.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFrameworks>net60</TargetFrameworks>
55
<Description>ASP.NET Core Identity Integration for dbosoft.IdentityServer</Description>
6+
<IsPackable>false</IsPackable>
67
</PropertyGroup>
78

89
<ItemGroup>

src/IdentityServer.AspNetIdentity/IdentityServerBuilderExtensions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
using System;
66
using System.Linq;
7-
using dbosoft.IdentityServer.Configuration.DependencyInjection;
8-
using dbosoft.IdentityServer.Configuration.DependencyInjection.BuilderExtensions;
7+
using Dbosoft.IdentityServer.Configuration.DependencyInjection;
8+
using Dbosoft.IdentityServer.Configuration.DependencyInjection.BuilderExtensions;
99
using IdentityModel;
1010
using Microsoft.AspNetCore.Authentication.Cookies;
1111
using Microsoft.AspNetCore.Identity;
1212
using Microsoft.Extensions.DependencyInjection;
1313

14-
namespace dbosoft.IdentityServer.AspNetIdentity
14+
namespace Dbosoft.IdentityServer.AspNetIdentity
1515
{
1616
/// <summary>
1717
/// Extension methods to add ASP.NET Identity support to IdentityServer.

0 commit comments

Comments
 (0)