Skip to content

Commit 4085cc0

Browse files
Ensure we deploy the build hosts in Roslyn.VisualStudio.Setup
Without this, Microsoft.CodeAnalysis.Workspaces.MSBuild.dll itself is deployed, but will fail to work since it can't find any build hosts deployed alongside the DLL. Fixes #73854
1 parent 84d42b9 commit 4085cc0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/VisualStudio/Setup/Roslyn.VisualStudio.Setup.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,8 @@
168168
</ProjectReference>
169169
<ProjectReference Include="..\..\Workspaces\Core\MSBuild\Microsoft.CodeAnalysis.Workspaces.MSBuild.csproj">
170170
<Name>Workspaces.MSBuild</Name>
171-
<IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup;SatelliteDllsProjectOutputGroup</IncludeOutputGroupsInVSIX>
171+
<!-- Make sure we include ContentFilesProjectOutputGroup so we get the BuildHosts deployed into the VSIX -->
172+
<IncludeOutputGroupsInVSIX>BuiltProjectOutputGroup;SatelliteDllsProjectOutputGroup;ContentFilesProjectOutputGroup</IncludeOutputGroupsInVSIX>
172173
<ForceIncludeInVSIX>true</ForceIncludeInVSIX>
173174
<AdditionalProperties>TargetFramework=net472</AdditionalProperties>
174175
<PkgDefEntry>BindingRedirect</PkgDefEntry>

0 commit comments

Comments
 (0)