* Remove trailing comma * Remove duplicate property * Logo is now transparent & not on a solid a white BG * Adds in auto Nuget Restore with an option to skip auto restore if you wish to https://github.com/dotnet/dotnet-template-samples/tree/master/08-restore-on-create * Fix typo * Rename from UmbracoSolution to UmbracoProject Bit misleading as it only ever creates a CSProj & not a SLN * Couple extra places that needed a rename * Adds support for HTTP & HTTPS port that will autogenerate an available free port number https://github.com/dotnet/templating/wiki/Available-Symbols-Generators#port * Update build/templates/UmbracoProject/.template.config/template.json Co-authored-by: Bjarke Berg <mail@bergmania.dk> * Update build/templates/UmbracoProject/.template.config/template.json Co-authored-by: Bjarke Berg <mail@bergmania.dk> * Rather than COPY appsettings from Umbraco.Web.UI.NetCore we use these specific ones so we can add logic to them * Support for unattended install with new CLI args * Change order so all the long textboxes that are optional are together * Apply suggestions from code review from Elitsa Co-authored-by: Elitsa Marinovska <21998037+elit0451@users.noreply.github.com> Co-authored-by: Bjarke Berg <mail@bergmania.dk> Co-authored-by: Elitsa Marinovska <elm@umbraco.dk> Co-authored-by: Elitsa Marinovska <21998037+elit0451@users.noreply.github.com>
27 lines
706 B
JSON
27 lines
706 B
JSON
{
|
|
"iisSettings": {
|
|
"windowsAuthentication": false,
|
|
"anonymousAuthentication": true,
|
|
"iisExpress": {
|
|
"applicationUrl": "http://localhost:HTTP_PORT_FROM_TEMPLATE",
|
|
"sslPort": HTTPS_PORT_FROM_TEMPLATE
|
|
}
|
|
},
|
|
"profiles": {
|
|
"IIS Express": {
|
|
"commandName": "IISExpress",
|
|
"launchBrowser": true,
|
|
"environmentVariables": {
|
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
}
|
|
},
|
|
"Umbraco.Web.UI.NetCore": {
|
|
"commandName": "Project",
|
|
"environmentVariables": {
|
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
},
|
|
"applicationUrl": "https://localhost:HTTPS_PORT_FROM_TEMPLATE;http://localhost:HTTP_PORT_FROM_TEMPLATE"
|
|
}
|
|
}
|
|
}
|