如何运行Macos上的IdentityServer?

问题描述 投票:0回答:1

我正在开发一个项目,要求使用IdentityServer4。我安装了该项目,但无法运行它,因为它不支持 Macos 操作系统上的 .net 3.1。

我做了一些研究,我发现了 DuendeSoftware IdentityServer.Templates。

我输入了此命令dotnet new install Duende.IdentityServer.Templates。我完成了安装,但无法创建像 IdentityServer4 中那样的项目。

我该怎么做?

asp.net-core asp.net-web-api asp.net-identity identityserver4 duende-identity-server
1个回答
0
投票

使用“dotnet new install Duende.IdentityServer.Templates”安装模板后,您应该能够使用“dotnet new idsrv”命令创建新的 Identity Server 项目。

步骤如下:

1.打开您的终端。 2.运行命令“dotnet new idsrv -n [项目名称]”创建新的 Identity Server 项目。 3.使用 cd [项目名称] 导航 4.使用 IDE 处理项目以及 Duende Identity Server 文档提供的任何其他设置或配置步骤,以根据您的要求配置您的项目。

© www.soinside.com 2019 - 2024. All rights reserved.