tags:

views:

52

answers:

3

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?

+1  A: 

it will be .csproj

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

SQLMenace
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
A: 

C# Project files have the suffix: .csproj

Mitch Wheat
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
+3  A: 

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

bunn_online
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