Skip to content

Instantly share code, notes, and snippets.

@dataneek
Created May 19, 2017 20:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dataneek/4e621ee090e1b2cb128765cf386f1e8c to your computer and use it in GitHub Desktop.
Save dataneek/4e621ee090e1b2cb128765cf386f1e8c to your computer and use it in GitHub Desktop.
Task("Build")
.IsDependentOn("Restore")
.Does(() =>
{
var projects = GetFiles("./**/*.csproj").ToPaginable(1, 10);
foreach(var project in projects)
{
Information($"{project.ItemNumber}, {project.Item.ToString()}");
// DotNetCoreBuild(
// project.FullPath,
// new DotNetCoreBuildSettings()
// {
// Configuration = configuration
// });
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment