Skip to content

Commit 20eedda

Browse files
authored
Template: Update dotnet project template to remove previous LTS checks (#20573)
* Remove now unnecessary LTS checks from project dotnet template * Update the starter kit versions
1 parent 1099332 commit 20eedda

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

src/Umbraco.Web.UI/Program.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525
})
2626
.WithEndpoints(u =>
2727
{
28-
/*#if (UmbracoRelease = 'LTS')
29-
u.UseInstallerEndpoints();
30-
#endif */
3128
u.UseBackOfficeEndpoints();
3229
u.UseWebsiteEndpoints();
3330
});

templates/UmbracoProject/.template.config/starterkits.template.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@
3434
"cases": [
3535
{
3636
"condition": "(StarterKit == 'Umbraco.TheStarterKit' && (UmbracoRelease == 'Latest' || UmbracoRelease == 'Custom'))",
37-
"value": "16.0.0"
37+
"value": "17.0.0-rc"
3838
},
3939
{
4040
"condition": "(StarterKit == 'Umbraco.TheStarterKit' && UmbracoRelease == 'LTS')",
41-
"value": "13.0.0"
41+
"value": "17.0.0"
4242
}
4343
]
4444
}

templates/UmbracoProject/Dockerfile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,5 @@ USER root
2626
RUN mkdir umbraco
2727
RUN mkdir umbraco/Logs
2828
RUN chown $APP_UID umbraco --recursive
29-
#if (UmbracoRelease = 'LTS')
30-
RUN chown $APP_UID wwwroot/umbraco --recursive
31-
#endif
3229
USER $APP_UID
3330
ENTRYPOINT ["dotnet", "UmbracoProject.dll"]

0 commit comments

Comments
 (0)