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 8808cfd commit d355b74Copy full SHA for d355b74
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