1

What is the file name "delimiter? name of a C# project file?

I am not sure if "delimiter" is the right term. A solutions file ends as ".sln". How does a project file end in Visual Studio 2010?

Richard J. Ross III
  • 55,009
  • 24
  • 135
  • 201
xarzu
  • 8,657
  • 40
  • 108
  • 160

3 Answers3

4

The term you are looking for is "file extension". The file extension for a project file is .csproj

bunn_online
  • 742
  • 1
  • 6
  • 11
  • Please see this follow-up question http://stackoverflow.com/questions/2968102/what-are-the-other-possible-names-of-project-files-in-c-other-than-cproj – xarzu Jun 03 '10 at 16:58
2

it will be .csproj

.csproj.user will be the Visual Studio Project User Options File

SQLMenace
  • 132,095
  • 25
  • 206
  • 225
  • Please see this follow-up question http://stackoverflow.com/questions/2968102/what-are-the-other-possible-names-of-project-files-in-c-other-than-cproj – xarzu Jun 03 '10 at 16:59
0

C# Project files have the suffix: .csproj

Mitch Wheat
  • 295,962
  • 43
  • 465
  • 541
  • Please see this follow-up question http://stackoverflow.com/questions/2968102/what-are-the-other-possible-names-of-project-files-in-c-other-than-cproj – xarzu Jun 03 '10 at 17:01