File tree 2 files changed +16
-9
lines changed
2 files changed +16
-9
lines changed Original file line number Diff line number Diff line change @@ -403,3 +403,11 @@ FodyWeavers.xsd
403
403
.idea /** /shelf
404
404
405
405
publish
406
+
407
+ * .wxs
408
+ * .wixobj
409
+ * .wixpdb
410
+ * .wixlib
411
+ * .wixmdb
412
+ * .wixprj
413
+ * .wixproj
Original file line number Diff line number Diff line change @@ -29,18 +29,17 @@ foreach ($arch in @("x64", "arm64")) {
29
29
- version $assemblyVersion `
30
30
- arch $arch `
31
31
- msiOutputPath $msiOutputPath `
32
- - outputPath $outputPath `
33
- - sign
32
+ - outputPath $outputPath
34
33
if ($LASTEXITCODE -ne 0 ) { throw " Failed to publish" }
35
34
36
35
# Verify that the output exe is authenticode signed
37
- $sig = Get-AuthenticodeSignature $outputPath
38
- if ($sig.Status -ne " Valid" ) {
39
- throw " Output file is not authenticode signed"
40
- }
41
- else {
42
- Write-Host " Output file is authenticode signed"
43
- }
36
+ # $sig = Get-AuthenticodeSignature $outputPath
37
+ # if ($sig.Status -ne "Valid") {
38
+ # throw "Output file is not authenticode signed"
39
+ # }
40
+ # else {
41
+ # Write-Host "Output file is authenticode signed"
42
+ # }
44
43
}
45
44
finally {
46
45
Write-Host " ::endgroup::"
You can’t perform that action at this time.
0 commit comments