andrey.shedko
andrey.shedko

Reputation: 3238

ASP.NET Core WebApi wwwroot folder marked as ignored

It's time to learn ASP.NET Core, so I create test project. When I learn project structure I found then folder for static files (wwwroot) marked as ignored.
StaticFiles package was added as well as UseStaticFiles method was called on Configure. Why this happend? How should I fix tis?

Upvotes: 1

Views: 1286

Answers (1)

Christopher J.
Christopher J.

Reputation: 1283

Once you will add static files inside the folder, it will no longer be ignored by your Source Control Manager.

Upvotes: 1

Related Questions