-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathProject.cs
More file actions
34 lines (32 loc) · 1.05 KB
/
Copy pathProject.cs
File metadata and controls
34 lines (32 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MonoBuildScriptGenerator
{
public class Project
{
public string CSProj { get; set; }
public string OutFile { get; set; }
public IEnumerable<string> Reference { get; set; }
public IEnumerable<string> CompilationSymbols { get; set; }
public IEnumerable<string> Compile { get; set; }
public IEnumerable<string> Copies { get; set; }
public Project(
string csproj,
IEnumerable<string> reference,
IEnumerable<string> compile,
string outFile = null,
IEnumerable<string> compilationSymbols = null,
IEnumerable<string> copies = null)
{
CSProj = csproj;
OutFile = outFile;
Reference = reference;
Compile = compile;
CompilationSymbols = compilationSymbols;
Copies = copies;
}
}
}