Skip to content

Commit b4baf6d

Browse files
authored
Merge pull request #44 from tgharold/publish-new-symbols-1
Use NuGet "snupkg" format for symbols package
2 parents 65768fd + 29bb25d commit b4baf6d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

build-net5.cake

+6-1
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,12 @@ Task("Package")
328328
MSBuildSettings = new DotNetCoreMSBuildSettings().SetVersion(packageVersion),
329329
NoBuild = true,
330330
OutputDirectory = artifactsDir,
331-
IncludeSymbols = true
331+
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",
332337
});
333338
}
334339
}

0 commit comments

Comments
 (0)