/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Interactive/csi/csi.csproj
36 строк
2 KB
Matt Mitchell
Switch to new VMR control set (#75056)
13 сен 2024, 18:19
Не верифицирован
13 сен 2024, 18:19
214d43a
Код
Авторство
О чём код?
<?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"> <Import Project="$(RepositoryEngineeringDir)targets\GenerateCompilerExecutableBindingRedirects.targets" /> <PropertyGroup> <OutputType>Exe</OutputType> <RootNamespace>CSharpInteractive</RootNamespace> <TargetFrameworks>$(NetRoslynSourceBuild);net472</TargetFrameworks> <UseAppHost Condition="'$(DotNetBuildSourceOnly)' == 'true'">false</UseAppHost> <IsSymbolPublishingPackage>true</IsSymbolPublishingPackage> </PropertyGroup> <ItemGroup Label="Project References"> <ProjectReference Include="..\..\Compilers\Core\Portable\Microsoft.CodeAnalysis.csproj" /> <ProjectReference Include="..\..\Compilers\CSharp\Portable\Microsoft.CodeAnalysis.CSharp.csproj" /> <ProjectReference Include="..\..\Scripting\Core\Microsoft.CodeAnalysis.Scripting.csproj" /> <ProjectReference Include="..\..\Scripting\CSharp\Microsoft.CodeAnalysis.CSharp.Scripting.csproj" /> </ItemGroup> <ItemGroup> <PackageReference Include="Microsoft.CSharp" /> </ItemGroup> <ItemGroup> <None Include="App.config" /> <None Include="csi.coreclr.rsp" Condition="'$(TargetFrameworkIdentifier)' == '.NETCoreApp'"> <Link>csi.rsp</Link> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> <None Include="csi.desktop.rsp" Condition="'$(TargetFrameworkIdentifier)' != '.NETCoreApp'"> <Link>csi.rsp</Link> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> </ItemGroup> <ItemGroup> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.Scripting.Desktop.UnitTests" /> </ItemGroup> <Import Project="$(RepositoryEngineeringDir)targets\DiaSymReaderNative.targets" /> </Project>