/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Compilers/Extension/Roslyn.Compilers.Extension.csproj
116 строк
7 KB
Jason Malinowski
Set DeployExtension for all the extensions we expect to deploy
11 июл 2025, 03:30
11 июл 2025, 03:30
f71444b
Код
Авторство
О чём код?
<?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>Roslyn.Compilers.Extension</RootNamespace> <TargetFramework>net472</TargetFramework> <IsShipping>false</IsShipping> <!-- VSIX --> <GeneratePkgDefFile>true</GeneratePkgDefFile> <IncludeAssemblyInVSIXContainer>true</IncludeAssemblyInVSIXContainer> <IncludeDebugSymbolsInVSIXContainer>true</IncludeDebugSymbolsInVSIXContainer> <IncludeDebugSymbolsInLocalVSIXDeployment>true</IncludeDebugSymbolsInLocalVSIXDeployment> <IncludeCopyLocalReferencesInVSIXContainer>false</IncludeCopyLocalReferencesInVSIXContainer> <ExcludeFromSourceOnlyBuild>true</ExcludeFromSourceOnlyBuild> <DeployExtension>true</DeployExtension> </PropertyGroup> <ItemGroup Label="PkgDef"> <PkgDefPackageRegistration Include="{31c0675e-87a4-4061-a0dd-a4e510fccf97}" Name="CompilerPackage" Class="Roslyn.Compilers.Extension.CompilerPackage" AllowsBackgroundLoad="true"/> <PkgDefBindingRedirect Include="$(TargetPath)" /> <None Include="PackageRegistration.pkgdef" PkgDefEntry="FileContent" /> </ItemGroup> <ItemGroup> <None Include="source.extension.vsixmanifest"> <SubType>Designer</SubType> </None> </ItemGroup> <ItemGroup> <PackageReference Include="System.Buffers" ForceIncludeInVsix="true" /> <PackageReference Include="System.Collections.Immutable" ForceIncludeInVsix="true" /> <PackageReference Include="System.Memory" ForceIncludeInVsix="true" /> <PackageReference Include="System.Reflection.Metadata" ForceIncludeInVsix="true" /> <PackageReference Include="System.Numerics.Vectors" ForceIncludeInVsix="true" /> <PackageReference Include="System.Text.Encoding.CodePages" ForceIncludeInVsix="true" /> <PackageReference Include="System.Runtime.CompilerServices.Unsafe" ForceIncludeInVsix="true" /> <PackageReference Include="System.Threading.Tasks.Extensions" ForceIncludeInVsix="true" /> </ItemGroup> <ItemGroup> <Reference Include="Microsoft.CSharp" /> <Reference Include="System" /> <Reference Include="System.Core" /> <Reference Include="System.Data" /> <Reference Include="System.Design" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\..\Scripting\Core\Microsoft.CodeAnalysis.Scripting.csproj"> <IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup</IncludeOutputGroupsInVSIX> <IncludeOutputGroupsInVSIXLocalOnly>DebugSymbolsProjectOutputGroup%3b</IncludeOutputGroupsInVSIXLocalOnly> <ForceIncludeInVSIX>true</ForceIncludeInVSIX> </ProjectReference> <ProjectReference Include="..\..\Scripting\CSharp\Microsoft.CodeAnalysis.CSharp.Scripting.csproj"> <IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup</IncludeOutputGroupsInVSIX> <IncludeOutputGroupsInVSIXLocalOnly>DebugSymbolsProjectOutputGroup%3b</IncludeOutputGroupsInVSIXLocalOnly> <ForceIncludeInVSIX>true</ForceIncludeInVSIX> </ProjectReference> <ProjectReference Include="..\Core\MSBuildTask\MSBuild\Microsoft.Build.Tasks.CodeAnalysis.csproj"> <IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup%3bGetCopyToOutputDirectoryItems</IncludeOutputGroupsInVSIX> <IncludeOutputGroupsInVSIXLocalOnly>DebugSymbolsProjectOutputGroup%3b</IncludeOutputGroupsInVSIXLocalOnly> <ForceIncludeInVSIX>true</ForceIncludeInVSIX> <AdditionalProperties>TargetFramework=net472</AdditionalProperties> <PkgDefEntry>BindingRedirect</PkgDefEntry> </ProjectReference> <ProjectReference Include="..\Core\Portable\Microsoft.CodeAnalysis.csproj"> <IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup</IncludeOutputGroupsInVSIX> <IncludeOutputGroupsInVSIXLocalOnly>DebugSymbolsProjectOutputGroup%3b</IncludeOutputGroupsInVSIXLocalOnly> <ForceIncludeInVSIX>true</ForceIncludeInVSIX> </ProjectReference> <ProjectReference Include="..\Server\VBCSCompiler\AnyCpu\VBCSCompiler.csproj"> <IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup</IncludeOutputGroupsInVSIX> <IncludeOutputGroupsInVSIXLocalOnly>DebugSymbolsProjectOutputGroup%3b</IncludeOutputGroupsInVSIXLocalOnly> <ForceIncludeInVSIX>true</ForceIncludeInVSIX> <!-- Workaround for https://github.com/dotnet/sdk/issues/433#issuecomment-320024771 . Remove once resolved. --> <AdditionalProperties>TargetFramework=net472</AdditionalProperties> </ProjectReference> <ProjectReference Include="..\CSharp\csc\AnyCpu\csc.csproj"> <IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup%3bGetCopyToOutputDirectoryItems</IncludeOutputGroupsInVSIX> <IncludeOutputGroupsInVSIXLocalOnly>DebugSymbolsProjectOutputGroup%3b</IncludeOutputGroupsInVSIXLocalOnly> <ForceIncludeInVSIX>true</ForceIncludeInVSIX> <AdditionalProperties>TargetFramework=net472</AdditionalProperties> </ProjectReference> <ProjectReference Include="..\CSharp\Portable\Microsoft.CodeAnalysis.CSharp.csproj"> <IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup</IncludeOutputGroupsInVSIX> <IncludeOutputGroupsInVSIXLocalOnly>DebugSymbolsProjectOutputGroup%3b</IncludeOutputGroupsInVSIXLocalOnly> <ForceIncludeInVSIX>true</ForceIncludeInVSIX> </ProjectReference> <ProjectReference Include="..\VisualBasic\Portable\Microsoft.CodeAnalysis.VisualBasic.vbproj"> <IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup</IncludeOutputGroupsInVSIX> <IncludeOutputGroupsInVSIXLocalOnly>DebugSymbolsProjectOutputGroup%3b</IncludeOutputGroupsInVSIXLocalOnly> <ForceIncludeInVSIX>true</ForceIncludeInVSIX> </ProjectReference> <ProjectReference Include="..\VisualBasic\vbc\AnyCpu\vbc.csproj"> <IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup%3bGetCopyToOutputDirectoryItems</IncludeOutputGroupsInVSIX> <IncludeOutputGroupsInVSIXLocalOnly>DebugSymbolsProjectOutputGroup%3b</IncludeOutputGroupsInVSIXLocalOnly> <ForceIncludeInVSIX>true</ForceIncludeInVSIX> <AdditionalProperties>TargetFramework=net472</AdditionalProperties> </ProjectReference> <ProjectReference Include="..\..\Interactive\csi\csi.csproj"> <IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup%3bGetCopyToOutputDirectoryItems</IncludeOutputGroupsInVSIX> <IncludeOutputGroupsInVSIXLocalOnly>DebugSymbolsProjectOutputGroup%3b</IncludeOutputGroupsInVSIXLocalOnly> <ForceIncludeInVSIX>true</ForceIncludeInVSIX> <AdditionalProperties>TargetFramework=net472</AdditionalProperties> </ProjectReference> </ItemGroup> <ItemGroup> <PackageReference Include="Microsoft.VisualStudio.Sdk" /> <PackageReference Include="Microsoft.VisualStudio.ProjectSystem" /> </ItemGroup> </Project>