From 44f16d76c166dea6ca854b8d722cc83f6ca7cbf6 Mon Sep 17 00:00:00 2001 From: mikepreston17 Date: Tue, 5 Mar 2024 20:53:01 -0600 Subject: [PATCH] grid improvements --- Pages/Index.cshtml | 2 +- nugsnet6.csproj | 2 ++ package.json | 7 +++++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Pages/Index.cshtml b/Pages/Index.cshtml index 4b6ee42..d17bf94 100644 --- a/Pages/Index.cshtml +++ b/Pages/Index.cshtml @@ -72,7 +72,7 @@ -
+
diff --git a/nugsnet6.csproj b/nugsnet6.csproj index 84d9107..4c37fb7 100644 --- a/nugsnet6.csproj +++ b/nugsnet6.csproj @@ -11,6 +11,8 @@ CS0414;CS8602;CS1998;CS0168;CS8605;CS8603;CS8625;CS8604;CS8600;CS8601;CS8620;CS8618;CS4014;CS8619;CS8765;CS0105;CS8767;CS0659;CS8619;CS0219; + + True diff --git a/package.json b/package.json index e7101d7..6439878 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,13 @@ { "scripts": { - "dev": "dotnet watch run --quiet --no-hot-reload --urls http://127.1.1.0:8080", + "dev": "dotnet watch run --quiet --urls http://127.1.1.0:8080", + "start": "dotnet run --configuration Release --urls http://127.1.1.0:8080", + "debug": "dotnet run bin/Debug/net7.0/nugsnet6.dll --urls http://127.1.1.0:8080", + "release": "dotnet run /bin/Release --urls http://127.1.1.0:8080", "build": "yarn && npm i && dotnet build -v q && yarn buildcss:linux", + "publish": "dotnet publish -c Release", "restore": "dotnet restore", "buildcss:linux": "npx tailwindcss -i ./Styles/app.css -o ./wwwroot/css/site.css", - "desktop": "electronize-h5 start /watch", "nuke": "rm -rf node_modules wwwroot/lib wwwroot/css bin obj", "reinstall": "npm run nuke && yarn && npm i && npm run buildcss:linux", "quickstart": "bash quickstart.sh",