This repository has been archived by the owner on Dec 23, 2024. It is now read-only.
forked from nosami/visualfsharp
-
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.
Merge main to release/dev16.8 (dotnet#10120)
* Bloody mutable fields (dotnet#10116) * Fix 9150 --- #i nuget on desktop witout net48 ref assemblies fails. (dotnet#10114) * signing (dotnet#10108) Co-authored-by: Kevin Ransom (msft) <[email protected]>
- Loading branch information
Showing
6 changed files
with
616 additions
and
5 deletions.
There are no files selected for viewing
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