2 writes to CryptoKeyContainer
Microsoft.CodeAnalysis (1)
Compilation\CompilationOptions.cs (1)
301
this.
CryptoKeyContainer
= cryptoKeyContainer;
Microsoft.CodeAnalysis.CSharp (1)
CSharpCompilationOptions.cs (1)
397
return new CSharpCompilationOptions(this) {
CryptoKeyContainer
= name };
25 references to CryptoKeyContainer
Microsoft.CodeAnalysis (17)
Compilation\Compilation.cs (1)
297
if (options.
CryptoKeyContainer
!= null ||
Compilation\CompilationOptions.cs (14)
57
/// If specified the values of <see cref="CryptoKeyFile"/> and <see cref="
CryptoKeyContainer
"/>
69
/// To sign the output supply either one of <see cref="CryptoKeyFile"/> or <see cref="
CryptoKeyContainer
"/>.
70
/// but not both. If both are specified <see cref="
CryptoKeyContainer
"/> is ignored.
84
/// To sign the output supply either one of <see cref="CryptoKeyFile"/> or <see cref="
CryptoKeyContainer
"/>.
85
/// but not both. If both are specified <see cref="
CryptoKeyContainer
"/> is ignored.
101
/// If false and <see cref="CryptoPublicKey"/>, <see cref="CryptoKeyFile"/>, or <see cref="
CryptoKeyContainer
"/> is specified
574
if (
CryptoKeyContainer
!= null)
577
Location.None, nameof(CryptoPublicKey), nameof(
CryptoKeyContainer
)));
589
if (
CryptoKeyContainer
!= null)
592
Location.None, nameof(PublicSign), nameof(
CryptoKeyContainer
)));
628
string.Equals(this.
CryptoKeyContainer
, other.
CryptoKeyContainer
, StringComparison.Ordinal) &&
676
Hash.Combine(this.
CryptoKeyContainer
!= null ? StringComparer.Ordinal.GetHashCode(this.
CryptoKeyContainer
) : 0,
Compilation\DeterministicKeyBuilder.cs (1)
538
writer.Write("cryptoKeyContainer", options.
CryptoKeyContainer
);
StrongName\StrongNameKeys.cs (1)
44
/// <see cref="CompilationOptions.
CryptoKeyContainer
"/>.
Microsoft.CodeAnalysis.CSharp (7)
CSharpCompilationOptions.cs (2)
311
cryptoKeyContainer: other.
CryptoKeyContainer
,
392
if (name == this.
CryptoKeyContainer
)
Symbols\Source\SourceAssemblySymbol.cs (5)
515
string keyContainer = _compilation.Options.
CryptoKeyContainer
;
785
if (!String.IsNullOrEmpty(_compilation.Options.
CryptoKeyContainer
))
801
else if (!string.Equals(_compilation.Options.
CryptoKeyContainer
, assemblyKeyContainerAttributeSetting, StringComparison.OrdinalIgnoreCase))
2022
if (!string.IsNullOrEmpty(_compilation.Options.
CryptoKeyContainer
) &&
2028
var typedConstant = new TypedConstant(stringType, TypedConstantKind.Primitive, _compilation.Options.
CryptoKeyContainer
);
Microsoft.CodeAnalysis.Workspaces (1)
Serialization\AbstractOptionsSerializationService.cs (1)
37
writer.WriteString(options.
CryptoKeyContainer
);