-
Notifications
You must be signed in to change notification settings - Fork 789
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge main to release/dev16.8 (#10120)
* Bloody mutable fields (#10116) * Fix 9150 --- #i nuget on desktop witout net48 ref assemblies fails. (#10114) * signing (#10108) Co-authored-by: Kevin Ransom (msft) <[email protected]>
- Loading branch information
1 parent
71b8192
commit 038fd2f
Showing
14 changed files
with
383 additions
and
344 deletions.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,24 @@ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. See License.txt in the project root for license information. | ||
|
||
/// Functions associated with signing il assemblies which | ||
/// vary between supported implementations of the CLI Common Language | ||
/// Runtime, e.g. between the SSCLI, Mono and the Microsoft CLR. | ||
/// | ||
module internal FSharp.Compiler.AbstractIL.Internal.StrongNameSign | ||
|
||
//--------------------------------------------------------------------- | ||
// Strong name signing | ||
//--------------------------------------------------------------------- | ||
[<Sealed>] | ||
type ILStrongNameSigner = | ||
member PublicKey: byte[] | ||
static member OpenPublicKeyOptions: string -> bool -> ILStrongNameSigner | ||
static member OpenPublicKey: byte[] -> ILStrongNameSigner | ||
static member OpenKeyPairFile: string -> ILStrongNameSigner | ||
static member OpenKeyContainer: string -> ILStrongNameSigner | ||
member Close: unit -> unit | ||
member IsFullySigned: bool | ||
member PublicKey: byte[] | ||
member SignatureSize: int | ||
member SignFile: string -> unit |
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
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
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
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
Oops, something went wrong.