style simplification and publish upgrades for dotnet 10

This commit is contained in:
daniel-c-harvey
2026-01-22 08:59:48 -05:00
parent bc521d5b29
commit 51cef436d7
2 changed files with 243 additions and 712 deletions
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -9,8 +9,8 @@ CONTENT_APP="deepdrft-content.tar.gz"
WEB_APP="deepdrft-web.tar.gz"
# Restore and Publish
dotnet publish $CONTENT_PROJ -c Release -f net9.0 -o $CONTENT_PROJ/publish -r linux-x64 -p:Platform="Any CPU" --verbosity normal
dotnet publish $WEB_PROJ -c Release -f net9.0 -o $WEB_PROJ/publish -r linux-x64 -p:Platform="Any CPU" --verbosity normal
dotnet publish $CONTENT_PROJ -c Release -f net10.0 -o $CONTENT_PROJ/publish -r linux-x64 -p:Platform="Any CPU" --verbosity normal
dotnet publish $WEB_PROJ -c Release -f net10.0 -o $WEB_PROJ/publish -r linux-x64 -p:Platform="Any CPU" --verbosity normal
# Check if migrations are needed
WEB_MIG="deepdrft-migrations.sql"