herbstengel
Goto Top

Mechanismus, damit sich Visual Studio die eingestellte Projektmappenkonfiguration merkt

Hallo.

welcher Mechanismus sorgt dafür, dass eine im Visual Studio eingestellte Projektmappenkonfiguration (es können ja einige unterschiedliche vorliegen) nach Schliessen des Visual Studio und wieder Öffnen des Visual Studios dann wieder korrekt angwählt wird? Oder nach Entladen und Wiederladen einer Solution/Projektmappe, nachdem zuvor eine andere Solution/Projektmappe angewählt wurde. Also so wie die Konfiguration vor dem Schiessen/Entladen gesetzt war. Wird das in einer Datei gespeichert? Falls ja: in ascii oder binär? Oder in der Registry? Oder in einer Datenbank? Beiispiele für Projektmappenkonfiguration: im einfachsten Fall Debug, Release

Viele Grüsse, Roger

Content-Key: 547951

Url: https://administrator.de/contentid/547951

Printed on: April 19, 2024 at 15:04 o'clock

Mitglied: 142970
142970 Feb 16, 2020 updated at 11:02:44 (UTC)
Goto Top
Die Build-Configurations werden im *.sln und *.suo File des Projekts abgelegt.
Unter anderem auch hier nachlesbar
https://stackoverflow.com/questions/15707340/where-is-the-currently-sele ...

Beispiel-Auszug aus einer *.sln
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{3A45C2C5-1A09-4A42-B115-2B1E6A205650}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{3A45C2C5-1A09-4A42-B115-2B1E6A205650}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{3A45C2C5-1A09-4A42-B115-2B1E6A205650}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{3A45C2C5-1A09-4A42-B115-2B1E6A205650}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal