/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/IntegrationTest/IntegrationTestBuildProject.csproj
37 строк
3 KB
David Wengier
Scope BuildDependencyVsix to dependency VSIX
18 май 2026, 01:46
18 май 2026, 01:46
7eda7cf
Код
Авторство
О чём код?
<Project Sdk="Microsoft.Build.Traversal"> <PropertyGroup> <TargetFrameworks>net472</TargetFrameworks> <ExcludeFromSourceOnlyBuild>true</ExcludeFromSourceOnlyBuild> </PropertyGroup> <ItemGroup> <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies.net45" /> </ItemGroup> <!-- This build project is used to allow CI to only build the projects required to build and run integration tests. Everything else (for example other unit test projects) are excluded to speed up the build time. --> <ItemGroup> <ProjectReference Include="..\..\Compilers\Extension\Roslyn.Compilers.Extension.csproj" /> <ProjectReference Include="..\..\ExpressionEvaluator\Package\ExpressionEvaluatorPackage.csproj" /> <ProjectReference Include="..\..\Razor\src\Razor\test\Microsoft.VisualStudio.Razor.IntegrationTests\Microsoft.VisualStudio.Razor.IntegrationTests.csproj" /> <!-- Only the dedicated dependency VSIX needs BuildDependencyVsix. Scoping the property here avoids duplicate configured builds of shared dependencies that can race on common outputs. --> <ProjectReference Include="..\..\Razor\src\Razor\src\Microsoft.VisualStudio.RazorExtension.Dependencies\Microsoft.VisualStudio.RazorExtension.Dependencies.csproj"> <AdditionalProperties>BuildDependencyVsix=true</AdditionalProperties> </ProjectReference> <ProjectReference Include="..\..\Setup\DevDivVsix\CompilersPackage\arm64\Microsoft.CodeAnalysis.Compilers.Setup.arm64.csproj" /> <ProjectReference Include="..\..\Setup\DevDivVsix\CompilersPackage\x64\Microsoft.CodeAnalysis.Compilers.Setup.x64.csproj" /> <ProjectReference Include="..\..\Setup\DevDivVsix\CompilersPackage\x86\Microsoft.CodeAnalysis.Compilers.Setup.x86.csproj" /> <ProjectReference Include="..\..\Tools\PrepareTests\PrepareTests.csproj" /> <ProjectReference Include="..\..\Tools\RunTests\RunTests.csproj" /> <ProjectReference Include="..\..\Tools\TestDiscoveryWorker\TestDiscoveryWorker.csproj" /> <ProjectReference Include="..\..\Workspaces\MSBuild\Test\Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests.csproj" /> <ProjectReference Include="..\Setup.Dependencies\Roslyn.VisualStudio.Setup.Dependencies.csproj" /> <ProjectReference Include="..\Setup\Roslyn.VisualStudio.Setup.csproj" /> <ProjectReference Include="..\VisualStudioDiagnosticsToolWindow\Roslyn.VisualStudio.DiagnosticsWindow.csproj" /> <ProjectReference Include="New.IntegrationTests\Microsoft.VisualStudio.LanguageServices.New.IntegrationTests.csproj" /> <ProjectReference Include="Harness\XUnitIntegrationTests\Microsoft.VisualStudio.Extensibility.Testing.Xunit.IntegrationTests.csproj" /> </ItemGroup> </Project>