In this PR, I added "Azure Spring Cloud" as a hosting dependency to Initializr. This dependency only supports .NET Core 3 and Steeltoe 2.4 for now. In the future, we might support Steeltoe 3.
The only changes made to source code are:
Program.cs: Append .UseAzureSpringCloudService() to the last line in CreateDefaultBuilder call chain, this sequence is important because we have to configure mTLS after .AddConfigServer().
In this PR, I added "Azure Spring Cloud" as a hosting dependency to Initializr. This dependency only supports
.NET Core 3
andSteeltoe 2.4
for now. In the future, we might supportSteeltoe 3
.The only changes made to source code are:
Program.cs
: Append.UseAzureSpringCloudService()
to the last line inCreateDefaultBuilder
call chain, this sequence is important because we have to configure mTLS after.AddConfigServer()
.ReplaceMe.csproj
: Add our private preview library.