2 writes to CryptoKeyContainer
Microsoft.CodeAnalysis (1)
Compilation\CompilationOptions.cs (1)
301this.CryptoKeyContainer = cryptoKeyContainer;
Microsoft.CodeAnalysis.CSharp (1)
CSharpCompilationOptions.cs (1)
397return new CSharpCompilationOptions(this) { CryptoKeyContainer = name };
25 references to CryptoKeyContainer
Microsoft.CodeAnalysis (17)
Compilation\Compilation.cs (1)
297if (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 574if (CryptoKeyContainer != null) 577Location.None, nameof(CryptoPublicKey), nameof(CryptoKeyContainer))); 589if (CryptoKeyContainer != null) 592Location.None, nameof(PublicSign), nameof(CryptoKeyContainer))); 628string.Equals(this.CryptoKeyContainer, other.CryptoKeyContainer, StringComparison.Ordinal) && 676Hash.Combine(this.CryptoKeyContainer != null ? StringComparer.Ordinal.GetHashCode(this.CryptoKeyContainer) : 0,
Compilation\DeterministicKeyBuilder.cs (1)
538writer.Write("cryptoKeyContainer", options.CryptoKeyContainer);
StrongName\StrongNameKeys.cs (1)
44/// <see cref="CompilationOptions.CryptoKeyContainer"/>.
Microsoft.CodeAnalysis.CSharp (7)
CSharpCompilationOptions.cs (2)
311cryptoKeyContainer: other.CryptoKeyContainer, 392if (name == this.CryptoKeyContainer)
Symbols\Source\SourceAssemblySymbol.cs (5)
515string keyContainer = _compilation.Options.CryptoKeyContainer; 785if (!String.IsNullOrEmpty(_compilation.Options.CryptoKeyContainer)) 801else if (!string.Equals(_compilation.Options.CryptoKeyContainer, assemblyKeyContainerAttributeSetting, StringComparison.OrdinalIgnoreCase)) 2022if (!string.IsNullOrEmpty(_compilation.Options.CryptoKeyContainer) && 2028var typedConstant = new TypedConstant(stringType, TypedConstantKind.Primitive, _compilation.Options.CryptoKeyContainer);
Microsoft.CodeAnalysis.Workspaces (1)
Serialization\AbstractOptionsSerializationService.cs (1)
37writer.WriteString(options.CryptoKeyContainer);