mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 21:38:52 +00:00
25 lines
532 B
C#
25 lines
532 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Microsoft.Build.Utilities;
|
|
|
|
namespace Cosmos.Build.Tasks
|
|
{
|
|
public class IL2CPU : Task
|
|
{
|
|
private TaskItem[] plugs;
|
|
/// <summary>
|
|
/// Gets or sets the plugs files to include in the build.
|
|
/// </summary>
|
|
public TaskItem[] Plugs
|
|
{
|
|
get { return plugs; }
|
|
set { plugs = value; }
|
|
}
|
|
|
|
public override bool Execute()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|