We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 65768fd + 29bb25d commit b4baf6dCopy full SHA for b4baf6d
build-net5.cake
@@ -328,7 +328,12 @@ Task("Package")
328
MSBuildSettings = new DotNetCoreMSBuildSettings().SetVersion(packageVersion),
329
NoBuild = true,
330
OutputDirectory = artifactsDir,
331
- IncludeSymbols = true
+ IncludeSymbols = true,
332
+
333
+ //TODO: Remove ArgumentCustomization, add SymbolPackageFormat once Cake 1.2 is released
334
+ // https://github.com/cake-build/cake/pull/3331
335
+ ArgumentCustomization = x => x.Append("-p:SymbolPackageFormat=snupkg")
336
+ //SymbolPackageFormat = "snupkg",
337
});
338
}
339
0 commit comments