/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Interactive/Host/Microsoft.CodeAnalysis.InteractiveHost.csproj
71 строка
5 KB
Jason Malinowski
Fix issues with reentrancy due to pumping in lock acquisition (#82522)
27 мар 2026, 02:52
Не верифицирован
27 мар 2026, 02:52
c43cd69
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <!-- 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. --> <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Library</OutputType> <RootNamespace>Microsoft.CodeAnalysis.Interactive</RootNamespace> <TargetFrameworks>net472;$(NetVS)</TargetFrameworks> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <GeneratePerformanceSensitiveAttribute>true</GeneratePerformanceSensitiveAttribute> <!-- Avoid dependency on System.Threading.Channels (unnecessary 32-bit NGEN'd binary) --> <DefineConstants>$(DefineConstants);MICROSOFT_CODEANALYSIS_THREADING_NO_CHANNELS</DefineConstants> <!-- NuGet --> <IsPackable>true</IsPackable> <ExcludeFromSourceOnlyBuild>true</ExcludeFromSourceOnlyBuild> <PackageDescription> .NET Compiler Platform ("Roslyn") interactive host implementation. </PackageDescription> </PropertyGroup> <ItemGroup> <ProjectReference Include="..\..\Compilers\Core\Portable\Microsoft.CodeAnalysis.csproj" /> <ProjectReference Include="..\..\Scripting\Core\Microsoft.CodeAnalysis.Scripting.csproj"> <Aliases>global,Scripting</Aliases> </ProjectReference> </ItemGroup> <ItemGroup> <InternalsVisibleTo Include="InteractiveHost32" /> <InternalsVisibleTo Include="InteractiveHost64" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.EditorFeatures" /> <InternalsVisibleTo Include="InteractiveHost.UnitTests" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.LanguageServices" /> <InternalsVisibleTo Include="Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests" /> </ItemGroup> <ItemGroup> <PublicAPI Include="PublicAPI.Unshipped.txt" /> <PublicAPI Include="PublicAPI.Shipped.txt" /> </ItemGroup> <ItemGroup> <Compile Include="..\..\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\TaskExtensions.cs" Link="Utilities\TaskExtensions.cs" /> <Compile Include="..\..\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\AsyncLazy.cs" Link="Utilities\AsyncLazy.cs" /> <Compile Include="..\..\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\AsyncLazy`1.cs" Link="Utilities\AsyncLazy`1.cs" /> <Compile Include="..\..\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\NonReentrantLock.cs" Link="Utilities\NonReentrantLock.cs" /> <Compile Include="..\..\Compilers\Core\Portable\InternalUtilities\SemaphoreSlimExtensions.cs" Link="Utilities\SemaphoreSlimExtensions.cs" /> <Compile Include="..\..\Compilers\Core\Portable\InternalUtilities\NoMessagePumpSyncContext.cs" Link="Utilities\NoMessagePumpSyncContext.cs" /> <Compile Include="..\..\Compilers\Core\Portable\InternalUtilities\SpecializedSyncContext.cs" Link="Utilities\SpecializedSyncContext.cs" /> <Compile Include="..\..\Compilers\Core\Portable\InternalUtilities\FileNameUtilities.cs" Link="Utilities\FileNameUtilities.cs" /> <Compile Include="..\..\Compilers\Core\Portable\InternalUtilities\PlatformInformation.cs" Link="Utilities\PlatformInformation.cs" /> <Compile Include="..\..\Compilers\Core\Portable\InternalUtilities\Debug.cs" Link="Utilities\Debug.cs" /> <Compile Include="..\..\Compilers\Core\Portable\InternalUtilities\RoslynString.cs" Link="Utilities\RoslynString.cs" /> <Compile Include="..\..\Compilers\Core\Portable\InternalUtilities\Hash.cs" Link="Utilities\Hash.cs" /> <Compile Include="..\..\Compilers\Core\Portable\FileSystem\FileUtilities.cs" Link="Utilities\FileUtilities.cs" /> <Compile Include="..\..\Compilers\Core\Portable\FileSystem\PathUtilities.cs" Link="Utilities\PathUtilities.cs" /> <Compile Include="..\..\Compilers\Core\Portable\FileSystem\PathKind.cs" Link="Utilities\PathKind.cs" /> <Compile Include="..\..\Compilers\Shared\NamedPipeUtil.cs" Link="Utilities\NamedPipeUtil.cs" /> </ItemGroup> <ItemGroup> <PackageReference Include="StreamJsonRpc" /> <!-- Due to the limitation of our BindingRedirect generation logic, add an explicit reference to System.Threading.Tasks.Dataflow to ensure that the correct BindingRedirect is included in the app.config of InteractiveHost.exe --> <PackageReference Include="System.Threading.Tasks.Dataflow" /> </ItemGroup> <ItemGroup> <EmbeddedResource Update="InteractiveHostResources.resx" GenerateSource="true" /> </ItemGroup> <Import Project="..\..\Dependencies\Threading\Microsoft.CodeAnalysis.Threading.projitems" Label="Shared" /> <Import Project="..\..\Dependencies\Collections\Microsoft.CodeAnalysis.Collections.projitems" Label="Shared" /> <Import Project="..\..\Dependencies\Contracts\Microsoft.CodeAnalysis.Contracts.projitems" Label="Shared" /> <Import Project="..\..\Dependencies\PooledObjects\Microsoft.CodeAnalysis.PooledObjects.projitems" Label="Shared" /> </Project>