We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a14c46 commit dae6e0dCopy full SHA for dae6e0d
build.cake
@@ -294,7 +294,11 @@ Task("PackageNugetPackages")
294
var settings = new DotNetCorePackSettings
295
{
296
Configuration = configuration,
297
- OutputDirectory = artifactsPackagesDirectory
+ OutputDirectory = artifactsPackagesDirectory,
298
+ NoBuild = true,
299
+ IncludeSymbols = true,
300
+ MSBuildSettings = new DotNetCoreMSBuildSettings()
301
+ .WithProperty("PackageVersion", gitVersion.SemVer)
302
};
303
DotNetCorePack(projectPath, settings);
304
}
0 commit comments