解决方案的主动配置 SharpDevelop

发布于 2024-09-08 15:18:34 字数 335 浏览 0 评论 0原文

已经询问了有关 Visual Studio 项目的活动配置,并且由于这一点,我知道它存储在.suo 和 csproj.user(对于 C#)文件。

现在我发现,对于在 SharpDevelop 中创建的解决方案,没有创建这些文件。

SharpDevelop 中创建的解决方案的活动配置信息存储在哪里?

I already asked regarding the active configuration for Visual Studio projects and thanks to that already, I know that it is stored in .suo and csproj.user (for C#) file.

Now I found that for solutions created in SharpDevelop there were not created these files.

Where is information for the active configuration for solutions created in SharpDevelop stored?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天邊彩虹 2024-09-15 15:18:34

在 SharpDevelop 中,此信息存储在您的用户配置文件下的 XML 文件中。在 Windows VistaWindows 7,例如,此 XML 文件存储在以下文件夹中:

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

此文件夹内将有一个以您的解决方案命名的 XML 文件(例如,MyConsoleApp .sln.3f6fc903.xml)。 XML 文件将存储当前活动的配置,如下所示:

<Properties>
  <ActiveConfiguration value="Debug" />
  <ActivePlatform value="x86" />
  <StartupProject value="" />
</Properties>

In SharpDevelop this information is stored in an XML file under your user profile. In Windows 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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文