forked from kevinsawicki/signcode
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for electron-builder issues #581 and #584 (#3)
* Fix NPM package repository URL * Update description to reflect ability to sign from Windows * Fix typo * Fix for electron-builder issues #581 and #584
- Loading branch information
Showing
9 changed files
with
70 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
vendor/windows-6/Microsoft.Windows.Build.Signing.mssign32.dll.manifest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> | ||
|
||
<assemblyIdentity | ||
name="Microsoft.Windows.Build.Signing.mssign32.dll" | ||
version="0.0.0.0" | ||
/> | ||
|
||
<file name="mssign32.dll"> | ||
</file> | ||
|
||
</assembly> |
11 changes: 11 additions & 0 deletions
11
vendor/windows-6/Microsoft.Windows.Build.Signing.wintrust.dll.manifest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> | ||
|
||
<assemblyIdentity | ||
name="Microsoft.Windows.Build.Signing.wintrust.dll" | ||
version="0.0.0.0" | ||
/> | ||
|
||
<file name="wintrust.dll"> | ||
</file> | ||
|
||
</assembly> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> | ||
<assemblyIdentity | ||
name=" " | ||
version="0.0.0.0" | ||
/> | ||
<dependency> | ||
<dependentAssembly> | ||
<assemblyIdentity | ||
name="Microsoft.Windows.Build.Signing.wintrust.dll" | ||
version="0.0.0.0" | ||
/> | ||
</dependentAssembly> | ||
</dependency> | ||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> | ||
<security> | ||
<requestedPrivileges> | ||
<requestedExecutionLevel level="asInvoker" /> | ||
</requestedPrivileges> | ||
</security> | ||
</trustInfo> | ||
</assembly> |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> | ||
|
||
<assemblyIdentity | ||
name=" " | ||
version="0.0.0.0" | ||
/> | ||
|
||
<dependency> | ||
<dependentAssembly> | ||
<assemblyIdentity | ||
name="Microsoft.Windows.Build.Signing.mssign32.dll" | ||
version="0.0.0.0" | ||
/> | ||
</dependentAssembly> | ||
</dependency> | ||
|
||
<dependency> | ||
<dependentAssembly> | ||
<assemblyIdentity | ||
name="Microsoft.Windows.Build.Signing.wintrust.dll" | ||
version="0.0.0.0" | ||
/> | ||
</dependentAssembly> | ||
</dependency> | ||
</assembly> |
Binary file not shown.