File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -169,7 +169,6 @@ export async function requestProjectInformation(server: OmniSharpServer, request
169169export async function requestWorkspaceInformation ( server : OmniSharpServer ) {
170170 const response = await server . makeRequest < protocol . WorkspaceInformationResponse > ( protocol . Requests . Projects ) ;
171171 if ( response . MsBuild && response . MsBuild . Projects ) {
172-
173172 for ( const project of response . MsBuild . Projects ) {
174173 project . IsWebProject = isWebProject ( project . Path ) ;
175174
@@ -185,9 +184,7 @@ export async function requestWorkspaceInformation(server: OmniSharpServer) {
185184 ) ;
186185
187186 project . IsBlazorWebAssemblyHosted = isProjectBlazorWebAssemblyHosted ;
188- project . IsBlazorWebAssemblyStandalone =
189- isProjectBlazorWebAssemblyProject && ! project . IsBlazorWebAssemblyHosted ;
190-
187+ project . IsBlazorWebAssemblyStandalone = isProjectBlazorWebAssemblyProject && ! project . IsBlazorWebAssemblyHosted ;
191188 }
192189 }
193190
You can’t perform that action at this time.
0 commit comments