Skip to content

Commit

Permalink
Workaround for dotnet/sdk#3685
Browse files Browse the repository at this point in the history
  • Loading branch information
SIkebe committed Feb 10, 2020
1 parent 52ae47c commit 3a3a6ad
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.cake
Expand Up @@ -141,6 +141,9 @@ Task("Publish-SingleFile")
Runtime = "win-x64",
PublishSingleFile = true,
PublishTrimmed = true,
// https://github.com/dotnet/sdk/issues/3685
ArgumentCustomization = args => args.Append("/p:IncludeSymbolsInSingleFile=true"),
});
});

Expand All @@ -160,4 +163,4 @@ Task("Run-All-Tests")
// EXECUTION
//////////////////////////////////////////////////////////////////////

RunTarget(target);
RunTarget(target);

0 comments on commit 3a3a6ad

Please sign in to comment.