Skip to content

Commit 4d9975b

Browse files
committed
Add .nuget to .gitignore
1 parent d2345a9 commit 4d9975b

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,4 +483,10 @@ docker-compose.override.yaml
483483
##
484484

485485
tmp/
486-
temp/
486+
temp/
487+
488+
# NuGet packages
489+
packages/
490+
*.nuget.props
491+
*.nuget.targets
492+
.nuget/

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,6 @@ dotnet add package Microsoft.EntityFrameworkCore.SqlServer
6464

6565
The `libman.json` file manages client-side libraries, while the `.csproj` file tracks NuGet dependencies. Both are automatically restored during development and build.
6666

67-
> **Important:** After installing packages, open the Deployment page and restart the running Blazor container so it loads the new dependencies.
68-
6967
### Production
7068

7169
Builds a production-ready image. During the build, dependencies are restored with `dotnet restore` and the application is published with `dotnet publish`. When the container starts, it runs:

0 commit comments

Comments
 (0)