38 lines
721 B
Plaintext
Executable File
38 lines
721 B
Plaintext
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Reflection.Emit;
|
|
using System.Text.RegularExpressions;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OozyBuild
|
|
{
|
|
public class TestSlnProject : Project
|
|
{
|
|
static readonly string Extension = ".sln_test";
|
|
|
|
public TestSlnProject()
|
|
{
|
|
}
|
|
|
|
string platformsEnum = "Platforms";
|
|
string configsEnum = "Configurations";
|
|
|
|
public override void Init()
|
|
{
|
|
}
|
|
|
|
public override void OnSelected( /*MainWindow main*/ )
|
|
{
|
|
}
|
|
|
|
public override bool GeneratePackageBuild( Builder builder, BuildParams buildParams )
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|