/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Compilers/CSharp/Portable/Compilation/CSharpCompilationReference.cs
59 строк
2 KB
Jared Parsons
generated move
28 сен 2020, 19:36
28 сен 2020, 19:36
1cca63b
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Immutable; using System.Diagnostics; namespace Microsoft.CodeAnalysis.CSharp { /// <summary> /// Represents a reference to another C# compilation. /// </summary> [DebuggerDisplay("{GetDebuggerDisplay(), nq}")] internal sealed class CSharpCompilationReference : CompilationReference { /// <summary> /// Returns the referenced Compilation. /// </summary> public new CSharpCompilation Compilation { get; } internal override Compilation CompilationCore { get { return this.Compilation; } } /// <summary> /// Create a metadata reference to a compilation. /// </summary> /// <param name="compilation">The compilation to reference.</param> /// <param name="aliases">Extern aliases for this reference.</param> /// <param name="embedInteropTypes">Should interop types be embedded in the created assembly?</param> public CSharpCompilationReference( CSharpCompilation compilation, ImmutableArray<string> aliases = default(ImmutableArray<string>), bool embedInteropTypes = false) : base(GetProperties(compilation, aliases, embedInteropTypes)) { this.Compilation = compilation; } private CSharpCompilationReference(CSharpCompilation compilation, MetadataReferenceProperties properties) : base(properties) { this.Compilation = compilation; } internal override CompilationReference WithPropertiesImpl(MetadataReferenceProperties properties) { return new CSharpCompilationReference(Compilation, properties); } private string GetDebuggerDisplay() { return CSharpResources.CompilationC + this.Compilation.AssemblyName; } } }