/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Workspaces/MSBuild/Test/Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests.csproj
32 строки
2 KB
Jason Malinowski
Fix the ability to invoke async methods across the AppDomain boundary
01 май 2026, 02:36
01 май 2026, 02:36
d643ebf
Код
Авторство
О чём код?
<?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.MSBuild.UnitTests</RootNamespace> <TargetFrameworks>$(NetRoslyn);net472</TargetFrameworks> </PropertyGroup> <ItemGroup Label="Project References"> <!-- An extern alias is necessary to prevent ambiguity between shared projects linked to both Workspace and BuildHost --> <ProjectReference Include="..\Contracts\Microsoft.CodeAnalysis.Workspaces.MSBuild.Contracts.csproj" Aliases="MSBuildWorkspacesContracts" /> <ProjectReference Include="..\Core\Microsoft.CodeAnalysis.Workspaces.MSBuild.csproj" Aliases="MSBuildWorkspaces" /> <ProjectReference Include="..\..\..\Features\CSharp\Portable\Microsoft.CodeAnalysis.CSharp.Features.csproj" /> <ProjectReference Include="..\..\..\Features\VisualBasic\Portable\Microsoft.CodeAnalysis.VisualBasic.Features.vbproj" /> <ProjectReference Include="..\..\CoreTestUtilities\Microsoft.CodeAnalysis.Workspaces.Test.Utilities.csproj" /> </ItemGroup> <ItemGroup> <PackageReference Include="Microsoft.Build" /> </ItemGroup> <ItemGroup> <EmbeddedResource Include="Resources\**\*.*" /> </ItemGroup> <ItemGroup> <Compile Include="..\BuildHost\Rpc\RpcMethodInvoker.cs" Link="Rpc\RpcMethodInvoker.cs"/> <Compile Include="..\BuildHost\Rpc\RpcServer.cs" Link="Rpc\RpcServer.cs"/> <Compile Remove="Resources\**\*.*" /> </ItemGroup> <ItemGroup> <Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> </ItemGroup> </Project>