⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 msbuildenums.cs

📁 SharpDevelop2.0.0 c#开发免费工具
💻 CS
字号:
// <file>
//     <copyright see="prj:///doc/copyright.txt"/>
//     <license see="prj:///doc/license.txt"/>
//     <owner name="Mike Krüger" email="mike@icsharpcode.net"/>
//     <version>$Revision: 1010 $</version>
// </file>

using System;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using ICSharpCode.Core;

namespace ICSharpCode.SharpDevelop.Project
{
	public enum RunPostBuildEvent {
		[Description("${res:Dialog.ProjectOptions.RunPostBuildEvent.Always}")]
		Always,
		[Description("${res:Dialog.ProjectOptions.RunPostBuildEvent.OnSuccessfulBuild}")]
		OnSuccessfulBuild,
		[Description("${res:Dialog.ProjectOptions.RunPostBuildEvent.OnOutputUpdated}")]
		OnOutputUpdated
	}
	
	public enum DebugSymbolType {
		[Description("${res:Dialog.ProjectOptions.DebugSymbolType.None}")]
		None,
		[Description("${res:Dialog.ProjectOptions.DebugSymbolType.Full}")]
		Full,
		[Description("${res:Dialog.ProjectOptions.DebugSymbolType.PdbOnly}")]
		PdbOnly
	}
	
	public enum StartAction {
		Project,
		Program,
		StartURL
	}
	
	/// <summary>
	/// Specifies the possible locations where a property can be stored.
	/// </summary>
	[Flags]
	public enum PropertyStorageLocations
	{
		/// <summary>
		/// Store the property where the property was previously stored.
		/// This is the same value as <see cref="Unknown"/>.
		/// </summary>
		Unchanged = 0,
		/// <summary>
		/// Returned from GetProperty/FindProperty when the property does not exist.
		/// This is the same value as <see cref="Unchanged"/>.
		/// </summary>
		Unknown = 0,
		/// <summary>
		/// Store the property globally for all configurations in the project file.
		/// </summary>
		Base = 1,
		/// <summary>
		/// Store the property in the configuration-specific section.
		/// </summary>
		ConfigurationSpecific = 2,
		/// <summary>
		/// Store the property in the platform-specific section.
		/// </summary>
		PlatformSpecific = 4,
		/// <summary>
		/// The combination of the ConfigurationSpecific and PlatformSpecific flags.
		/// </summary>
		ConfigurationAndPlatformSpecific = ConfigurationSpecific | PlatformSpecific,
		/// <summary>
		/// Store the property in the user file.
		/// </summary>
		UserFile = 8
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -