|
|
@ -13,6 +13,7 @@ using ICSharpCode.SharpDevelop.Gui; |
|
|
|
namespace ICSharpCode.SharpDevelop.Project |
|
|
|
namespace ICSharpCode.SharpDevelop.Project |
|
|
|
{ |
|
|
|
{ |
|
|
|
public enum CopyToOutputDirectory { |
|
|
|
public enum CopyToOutputDirectory { |
|
|
|
|
|
|
|
[Description("test")] |
|
|
|
Never, |
|
|
|
Never, |
|
|
|
Always, |
|
|
|
Always, |
|
|
|
PreserveNewest |
|
|
|
PreserveNewest |
|
|
@ -51,8 +52,8 @@ namespace ICSharpCode.SharpDevelop.Project |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
[LocalizedProperty("Copy to output Directory", |
|
|
|
[LocalizedProperty("${res:ICSharpCode.SharpDevelop.Internal.Project.ProjectFile.CopyToOutputDirectory}", |
|
|
|
Description ="Specifies if the file should be copied to the output directory")] |
|
|
|
Description = "${res:ICSharpCode.SharpDevelop.Internal.Project.ProjectFile.CopyToOutputDirectory.Description}")] |
|
|
|
public CopyToOutputDirectory CopyToOutputDirectory { |
|
|
|
public CopyToOutputDirectory CopyToOutputDirectory { |
|
|
|
get { |
|
|
|
get { |
|
|
|
return base.Properties.Get("CopyToOutputDirectory", CopyToOutputDirectory.Never); |
|
|
|
return base.Properties.Get("CopyToOutputDirectory", CopyToOutputDirectory.Never); |
|
|
@ -62,8 +63,8 @@ namespace ICSharpCode.SharpDevelop.Project |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
[LocalizedProperty("Custom Tool", |
|
|
|
[LocalizedProperty("${res:ICSharpCode.SharpDevelop.Internal.Project.ProjectFile.CustomTool}", |
|
|
|
Description ="Specifies the tool that converts the file to the output.")] |
|
|
|
Description ="${res:ICSharpCode.SharpDevelop.Internal.Project.ProjectFile.CustomTool.Description}")] |
|
|
|
public string CustomTool { |
|
|
|
public string CustomTool { |
|
|
|
get { |
|
|
|
get { |
|
|
|
return base.Properties["Generator"]; |
|
|
|
return base.Properties["Generator"]; |
|
|
@ -73,8 +74,8 @@ namespace ICSharpCode.SharpDevelop.Project |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
[LocalizedProperty("Custom Tool Namespace", |
|
|
|
[LocalizedProperty("${res:ICSharpCode.SharpDevelop.Internal.Project.ProjectFile.CustomToolNamespace}", |
|
|
|
Description ="Specifies the namespace the custom tool places it's output.")] |
|
|
|
Description ="${res:ICSharpCode.SharpDevelop.Internal.Project.ProjectFile.CustomToolNamespace.Description}")] |
|
|
|
public string CustomToolNamespace { |
|
|
|
public string CustomToolNamespace { |
|
|
|
get { |
|
|
|
get { |
|
|
|
return base.Properties["CustomToolNamespace"]; |
|
|
|
return base.Properties["CustomToolNamespace"]; |
|
|
|