📄 projectcreateinformation.cs
字号:
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="Mike Kr黦er" email="mike@icsharpcode.net"/>
// <version value="$version"/>
// </file>
using System.IO;
using System.Collections;
using System.Xml;
using ICSharpCode.SharpDevelop.Internal.Templates;
using ICSharpCode.SharpDevelop.Gui;
namespace ICSharpCode.SharpDevelop.Internal.Templates
{
/// <summary>
/// This class holds all information the language binding need to create
/// a predefined project for their language, if no project template for a
/// specific language is avaiable, the language binding shouldn't care about
/// this stuff.
/// </summary>
public class ProjectCreateInformation
{
string projectName;
string combinePath;
string projectBasePath;
public string ProjectName {
get {
return projectName;
}
set {
projectName = value;
}
}
public string BinPath {
get {
return Path.Combine(combinePath, "bin");
}
}
public string CombinePath {
get {
return combinePath;
}
set {
combinePath = value;
}
}
public string ProjectBasePath {
get {
return projectBasePath;
}
set {
projectBasePath = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -