Which files in a Visual C# Studio project don't need to be versioned?

前端 未结 11 1128

I\'m new to Visual C# Studio (actually using the Express edition, but another developer is using the full version), and we are using version control (svn).

It\'s acc

11条回答
  •  广开言路
    2020-11-30 01:36

    Needed...

    *.sln - The solution file contains references to all the projects and dependencies between the projects.
    *.csproj - The project files themselves. These tell what files are included in the project, references, and the build steps for the project.

    Not...

    *.suo - This is a user settings file...

提交回复
热议问题