/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/RoslynAnalyzers/Tools/GenerateDocumentationAndConfigFiles/GenerateDocumentationAndConfigFiles.csproj
64 строки
4 KB
dotnet-maestro[bot]
[main] Update dependencies from dotnet/arcade (#84740)
07 авг 2026, 21:43
Не верифицирован
07 авг 2026, 21:43
4cfd9ff
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>$(NetRoslyn)</TargetFramework> <!-- This tool needs to run during the build.--> <EnableKnownPackVersionUpdatesForCurrentTargetFramework>false</EnableKnownPackVersionUpdatesForCurrentTargetFramework> <NonShipping>true</NonShipping> <UseAppHost>false</UseAppHost> <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> <RootNamespace>Microsoft.CodeAnalysis</RootNamespace> </PropertyGroup> <ItemGroup> <Compile Include="..\..\Microsoft.CodeAnalysis.Analyzers\Core\MetaAnalyzers\ReleaseTrackingHelper.cs" Link="ReleaseTrackingHelper.cs" /> </ItemGroup> <Import Project="..\..\Utilities\Compiler\Analyzer.Utilities.projitems" Label="Shared" /> <Import Project="..\..\Utilities\Workspaces\Workspaces.Utilities.projitems" Label="Shared" /> <ItemGroup> <PackageReference Include="Microsoft.BCL.AsyncInterfaces" /> <PackageReference Include="System.CommandLine" /> </ItemGroup> <Choose> <When Condition="'$(DotNetBuildSourceOnly)' != 'true'"> <ItemGroup> <PackageReference Include="Microsoft.CodeAnalysis.Common" VersionOverride="$(MicrosoftCodeAnalysisVersionForAnalyzers)" /> <PackageReference Include="Microsoft.CodeAnalysis.CSharp" VersionOverride="$(MicrosoftCodeAnalysisVersionForAnalyzers)" /> <PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" VersionOverride="$(MicrosoftCodeAnalysisVersionForAnalyzers)" /> <PackageReference Include="Microsoft.CodeAnalysis.VisualBasic" VersionOverride="$(MicrosoftCodeAnalysisVersionForAnalyzers)" /> <PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Workspaces" VersionOverride="$(MicrosoftCodeAnalysisVersionForAnalyzers)" /> <PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" VersionOverride="$(MicrosoftCodeAnalysisVersionForAnalyzers)" /> </ItemGroup> </When> <Otherwise> <ItemGroup> <ProjectReference Include="..\..\..\Compilers\Core\Portable\Microsoft.CodeAnalysis.csproj" /> <ProjectReference Include="..\..\..\Compilers\CSharp\Portable\Microsoft.CodeAnalysis.CSharp.csproj" /> <ProjectReference Include="..\..\..\Compilers\VisualBasic\Portable\Microsoft.CodeAnalysis.VisualBasic.vbproj" /> <ProjectReference Include="..\..\..\Workspaces\Core\Portable\Microsoft.CodeAnalysis.Workspaces.csproj" /> <ProjectReference Include="..\..\..\Workspaces\CSharp\Portable\Microsoft.CodeAnalysis.CSharp.Workspaces.csproj" /> <ProjectReference Include="..\..\..\Workspaces\VisualBasic\Portable\Microsoft.CodeAnalysis.VisualBasic.Workspaces.vbproj" /> </ItemGroup> </Otherwise> </Choose> <ItemGroup Condition="'$(DotNetBuildSourceOnly)' == 'true' and '$(OfficialBuild)' == 'false'"> <!-- Don't use the CPM version of these packages. Always use the version that is the transitive dependency of Microsoft.CodeAnalysis. This is because the CPM version can lead to package downgrades, specifically in non-official source-only builds where the dev/ci suffix in the version of these packages coming from the live build is treated as a lower version than the version from the previously source-built artifacts. --> <PackageVersion Remove="System.Collections.Immutable" /> <PackageVersion Remove="System.Composition" /> <PackageVersion Remove="System.IO.Pipelines" /> <PackageVersion Remove="System.Reflection.Metadata" /> </ItemGroup> <Import Project="..\..\..\Dependencies\Collections\Microsoft.CodeAnalysis.Collections.projitems" Label="Shared" /> <Import Project="..\..\..\Dependencies\PooledObjects\Microsoft.CodeAnalysis.PooledObjects.projitems" Label="Shared" /> <Import Project="..\..\..\Dependencies\Threading\Microsoft.CodeAnalysis.Threading.projitems" Label="Shared" /> <Import Project="..\..\..\Dependencies\Contracts\Microsoft.CodeAnalysis.Contracts.projitems" Label="Shared" /> <Import Project="..\..\..\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\CompilerExtensions.projitems" Label="Shared" /> <Import Project="..\..\..\Workspaces\SharedUtilitiesAndExtensions\Compiler\Extensions\Microsoft.CodeAnalysis.Extensions.projitems" Label="Shared" /> <Import Project="..\..\..\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\WorkspaceExtensions.projitems" Label="Shared" /> </Project>