Skip to content

Commit 8a921e0

Browse files
authored
fix launch url (#886)
* Fix launch URL so it goes to swagger * Rev to 10.0.1
1 parent d1a2b14 commit 8a921e0

File tree

2 files changed

+9
-28
lines changed

2 files changed

+9
-28
lines changed

CleanArchitecture.nuspec

+2-22
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>Ardalis.CleanArchitecture.Template</id>
55
<title>ASP.NET Core Clean Architecture Solution</title>
6-
<version>10.0.0</version>
6+
<version>10.0.1</version>
77
<authors>Steve Smith</authors>
88
<description>
99
The Clean Architecture Solution Template popularized by Steve @ardalis Smith. Provides a great starting point for modern and/or DDD solutions built with .NET 8 and C# 12.
@@ -13,27 +13,7 @@
1313
<license type="expression">MIT</license>
1414
<projectUrl>https://github.com/ardalis/CleanArchitecture</projectUrl>
1515
<releaseNotes>
16-
* UPDATE to .NET 9!
17-
* Use ConnectAsync in MimeKitEmailSender for async SMTP connection by @samanazadi1996 in https://github.com/ardalis/CleanArchitecture/pull/837
18-
* Using GlobalUsings class file for commonly used namespaces by @aminsharifi in https://github.com/ardalis/CleanArchitecture/pull/844
19-
* Bump Azure.Identity from 1.12.1 to 1.13.0 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/842
20-
* Added ADR for Dependency Injection Framework Update #829 by @Zaki2409 in https://github.com/ardalis/CleanArchitecture/pull/840
21-
* Bump Serilog.AspNetCore from 8.0.2 to 8.0.3 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/839
22-
* Bump ReportGenerator from 5.3.10 to 5.3.11 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/835
23-
* Bump Microsoft.EntityFrameworkCore.SqlServer, Microsoft.EntityFrameworkCore.Relational, Microsoft.Extensions.Logging.Abstractions and Microsoft.Extensions.Logging by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/834
24-
* Bump Microsoft.EntityFrameworkCore.Sqlite, Microsoft.EntityFrameworkCore.Relational, Microsoft.Extensions.Logging.Abstractions and Microsoft.Extensions.Logging by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/833
25-
* Bump Microsoft.EntityFrameworkCore.Tools, Microsoft.EntityFrameworkCore.Design, Microsoft.EntityFrameworkCore.Relational, Microsoft.Extensions.Logging.Abstractions and Microsoft.Extensions.Logging by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/830
26-
* Bump Microsoft.EntityFrameworkCore.InMemory from 8.0.8 to 8.0.10 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/850
27-
* Bump Microsoft.AspNetCore.Mvc.Testing from 8.0.8 to 8.0.10 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/851
28-
* Update to .NET 9.0 RC2 by @KyleMcMaster in https://github.com/ardalis/CleanArchitecture/pull/852
29-
* Adding Vogen Value Objects to Sample by @ardalis in https://github.com/ardalis/CleanArchitecture/pull/855
30-
* Bump Ardalis.SharedKernel from 1.6.0 to 2.1.1 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/856
31-
* Adds Aspire by @benjaminmishra in https://github.com/ardalis/CleanArchitecture/pull/859
32-
* Bump NSubstitute from 5.1.0 to 5.3.0 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/861
33-
* Bump Ardalis.Result from 10.0.0 to 10.1.0 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/860
34-
* Bump Azure.Identity from 1.13.0 to 1.13.1 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/858
35-
* Bump Ardalis.Result.AspNetCore from 10.0.0 to 10.1.0 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/862
36-
* Bump FastEndpoints and FastEndpoints.Swagger by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/863
16+
* Fix Launch URL in launchSettings.json
3717
</releaseNotes>
3818
<packageTypes>
3919
<packageType name="Template" />

src/Clean.Architecture.Web/Properties/launchSettings.json

+7-6
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,20 @@
88
}
99
},
1010
"profiles": {
11-
"IIS Express": {
12-
"commandName": "IISExpress",
13-
"environmentVariables": {
14-
"ASPNETCORE_ENVIRONMENT": "Development"
15-
}
16-
},
1711
"https": {
1812
"commandName": "Project",
1913
"dotnetRunMessages": true,
14+
"launchUrl": "swagger",
2015
"environmentVariables": {
2116
"ASPNETCORE_ENVIRONMENT": "Development"
2217
},
2318
"applicationUrl": "https://localhost:57679/"
19+
},
20+
"IIS Express": {
21+
"commandName": "IISExpress",
22+
"environmentVariables": {
23+
"ASPNETCORE_ENVIRONMENT": "Development"
24+
}
2425
}
2526
}
2627
}

0 commit comments

Comments
 (0)