Class BuildAssemblyTask
Compile final assembly using Roslyn
Implements
Microsoft.Build.Framework.ITask
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.CXUI.BuildTask
Assembly: Simplic.CXUI.dll
Syntax
public class BuildAssemblyTask : BuildTaskBase, ITask
Constructors
| Improve this Doc View SourceBuildAssemblyTask()
Create assembly compiler
Declaration
public BuildAssemblyTask()
Properties
| Improve this Doc View SourceOutputDirectory
The directory for writing the assembly to
Declaration
public string OutputDirectory { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Sources
List of sources which should be compiled
Declaration
public IList<string> Sources { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.String> |
WriteToFileSystem
If set to true, the assembly will be written to the filesystem
Declaration
public bool WriteToFileSystem { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Methods
| Improve this Doc View SourceExecute()
Compile assembly
Declaration
public override bool Execute()
Returns
Type | Description |
---|---|
System.Boolean |
Overrides
Implements
Microsoft.Build.Framework.ITask