/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Scripting/Core/Hosting/AssemblyLoader/AssemblyAndLocation.cs
15 строк
564 B
Tomáš Matoušek
Remove assembly loading light-up from scripting (#74409)
25 июл 2024, 03:39
Не верифицирован
25 июл 2024, 03:39
5998125
Код
Авторство
О чём код?
// 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. using System.Reflection; namespace Microsoft.CodeAnalysis.Scripting.Hosting; internal readonly record struct AssemblyAndLocation(Assembly Assembly, string Location, bool GlobalAssemblyCache) { public bool IsDefault => Assembly == null; public override string ToString() => Assembly + " @ " + (GlobalAssemblyCache ? "<GAC>" : Location); }