mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-15 15:09:29 +00:00
189662f1db
Cleaned up the Program.cs for the Cake Frosting project. Added the working direcotry directive
16 lines
318 B
C#
16 lines
318 B
C#
using System.Threading.Tasks;
|
|
using Cake.Core;
|
|
using Cake.Core.Diagnostics;
|
|
using Cake.Frosting;
|
|
|
|
public static class Program
|
|
{
|
|
public static int Main(string[] args)
|
|
{
|
|
return new CakeHost()
|
|
.UseContext<BuildContext>()
|
|
.UseWorkingDirectory("../")
|
|
.Run(args);
|
|
}
|
|
}
|