The default "AssemblyInfo" goes in there, but I dont need it for our directory structure. Every time I delete the "Properties" folder inside my project, it gets recreated on reload. How to prevent that?
Visual-studio – How to prevent Visual Studio from creating “Properties” folder
visual-studio
Related Question
- Visual-studio – How to rename a project folder from within Visual Studio
- Visual-studio – How to add an existing directory tree to a project in Visual Studio
- Visual-studio – Proper way to rename solution (and directories) in Visual Studio
- Git – .gitignore for Visual Studio Projects and Solutions
- Visual-studio – Difference between Build Solution, Rebuild Solution, and Clean Solution in Visual Studio
- Visual-studio – How to auto format code in Visual Studio
- Asp.net-mvc – Visual Studio debugging/loading very slow
Best Solution
First:
Open the solution and make sure you don't have the file "AssemblyInfo.cs" in the Properties folder. If you do move it to the root of the project. Save Solution and close Visual Studio.
Second:
Open the project file (*.csproj) with a text editor like Notepad++ and search and remove these two entries:
and
then save the project file and reopen the Solution in VS. That should do the trick.
Regards, Mike