tags:

views:

20

answers:

1

Hello I already asked regarding actove configuration for Visual Studio projects http://stackoverflow.com/questions/3184264/active-configuration and thanks to that already know that it stored in .suo and csproj.user(for c#) file. Now I found that for solutions created in SharpDevelop there were not created these files

Do you have information where for solutions created on SharpDevelop stored active configuration ?

Thanks in advance

+1  A: 

In SharpDevelop this information is stored in an xml file under your user profile. In Vista and Windows 7, for example, this xml file is stored in the folder:

C:\Users\[UserName]\AppData\Roaming\ICSharpCode\SharpDevelop3.0\preferences

Inside this folder will be an xml file named after your solution (e.g. MyConsoleApp.sln.3f6fc903.xml). The xml file will store the currently active configuration as shown below:

<Properties>
  <ActiveConfiguration value="Debug" />
  <ActivePlatform value="x86" />
  <StartupProject value="" />
</Properties>
Matt Ward
Thanks a lot for quick and very helpful reply .In addition : for Win XP it located in C:\Documents and Settings\[username]\Application Data\ICSharpCode\SharpDevelop3.0\preferences\[solutionname].xml
lm