Skip to content

Commit b6780f9

Browse files
committed
Workaround for dotnet/sdk#3685
1 parent 6b4d49d commit b6780f9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build.cake

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,9 @@ Task("Publish-SingleFile")
141141
Runtime = "win-x64",
142142
PublishSingleFile = true,
143143
PublishTrimmed = true,
144+
145+
// https://github.com/dotnet/sdk/issues/3685
146+
ArgumentCustomization = args => args.Append("/p:IncludeSymbolsInSingleFile=true"),
144147
});
145148
});
146149

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

163-
RunTarget(target);
166+
RunTarget(target);

0 commit comments

Comments
 (0)