/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Scripting/CSharp/Microsoft.CodeAnalysis.CSharp.Scripting.csproj
49 строк
3 KB
Julien Couvreur
Add empty CSharp15 test project (#81512)
03 дек 2025, 23:05
Не верифицирован
03 дек 2025, 23:05
f445b97
Код
Авторство
О чём код?
<?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.CSharp.Scripting</RootNamespace> <TargetFrameworks>$(NetRoslynSourceBuild);netstandard2.0</TargetFrameworks> <!-- NuGet --> <IsPackable>true</IsPackable> <PackageDescription> Microsoft .NET Compiler Platform ("Roslyn") CSharp scripting package. </PackageDescription> </PropertyGroup> <ItemGroup Label="Project References"> <ProjectReference Include="..\..\Compilers\Core\Portable\Microsoft.CodeAnalysis.csproj" /> <ProjectReference Include="..\..\Compilers\CSharp\Portable\Microsoft.CodeAnalysis.CSharp.csproj" /> <ProjectReference Include="..\Core\Microsoft.CodeAnalysis.Scripting.csproj"> <Aliases>global,Scripting</Aliases> </ProjectReference> </ItemGroup> <ItemGroup> <InternalsVisibleTo Include="csi" /> <!-- TODO: We also need to create CSharpCompilationOptions with BinderFlags.IgnoreCorLibraryDuplicatedTypes --> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.EditorFeatures" WorkItem="https://github.com/dotnet/roslyn/issues/5661"/> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.Emit.UnitTests" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.CSharp15.UnitTests" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.EndToEnd.UnitTests" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.UnitTests" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.Scripting.UnitTests" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.Scripting.Desktop.UnitTests" /> <InternalsVisibleTo Include="Microsoft.CodeAnalysis.Scripting.TestUtilities" /> <InternalsVisibleTo Include="InteractiveHost.UnitTests" /> </ItemGroup> <ItemGroup> <PublicAPI Include="PublicAPI.Shipped.txt" /> <PublicAPI Include="PublicAPI.Unshipped.txt" /> </ItemGroup> <ItemGroup> <EmbeddedResource Update="CSharpScriptingResources.resx" GenerateSource="true" /> </ItemGroup> <ItemGroup> <PackageReference Include="Microsoft.CSharp" /> </ItemGroup> </Project>