Question

I already asked regarding actove configuration for Visual Studio projects 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

Was it helpful?

Solution

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>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top