2

With a new ASPNET5 project, there is a .kproj.user file which seems to contain user-specific properties for the new project.

Should this file be added to my .gitignore? Or could there be something in this file which would prevent the project from being built on another machine?

CodingIntrigue
  • 75,930
  • 30
  • 170
  • 176

1 Answers1

1

Yes, as you can see in ".gitignore for Visual Studio Projects and solutions":

*.user 

That means any .user file is ignored (.kproj.user or otherwise).

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250