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 6af82c8 commit 1e9a301Copy full SHA for 1e9a301
eng/Build.ps1
@@ -563,12 +563,19 @@ try {
563
564
$script:BuildMessage = "Failure building product"
565
if ($restore -or $build -or $rebuild -or $pack -or $sign -or $publish -and -not $skipBuild -and -not $sourceBuild) {
566
+ $originalSignValue = $sign
567
+ if ($msbuildEngine -eq "dotnet") {
568
+ # Building FSharp.sln and VisualFSharp.sln with .NET Core MSBuild
569
+ # don't produce any artifacts to sign. Skip signing in this case.
570
+ $sign = $False
571
+ }
572
if ($noVisualStudio) {
573
BuildSolution "FSharp.sln" $False
574
}
575
else {
576
BuildSolution "VisualFSharp.sln" $False
577
578
+ $sign = $originalSignValue
579
580
581
if ($testBenchmarks) {
0 commit comments