Files
MonoGame.Extended/build/Program.cs
T
Christopher Whitley 189662f1db Cleaned up
Cleaned up the Program.cs for the Cake Frosting project.  Added the working direcotry directive
2023-11-16 00:46:45 -05:00

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);
}
}