Skip to content

Commit

Permalink
#30 - added ignore parallel flag.
Browse files Browse the repository at this point in the history
  • Loading branch information
dazinator committed Mar 11, 2018
1 parent 914d580 commit 9494e29
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ Task("__Build")
{
DotNetCoreBuild(solutionPath, new DotNetCoreBuildSettings
{
Configuration = configuration
Configuration = configuration,
ArgumentCustomization = args => args.Append("--disable-parallel),
});
});

Expand Down Expand Up @@ -169,12 +170,7 @@ Task("__Pack")

Task("__GenerateReleaseNotes")
.Does(() =>
{
var settings = new DotNetCorePackSettings
{
Configuration = "Release",
OutputDirectory = $"{artifactsDir}"
};
{

GitReleaseNotes($"{artifactsDir}/ReleaseNotes.md", new GitReleaseNotesSettings {
WorkingDirectory = ".",
Expand Down

0 comments on commit 9494e29

Please sign in to comment.