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
169
169
export async function requestWorkspaceInformation ( server : OmniSharpServer ) {
170
170
const response = await server . makeRequest < protocol . WorkspaceInformationResponse > ( protocol . Requests . Projects ) ;
171
171
if ( response . MsBuild && response . MsBuild . Projects ) {
172
-
173
172
for ( const project of response . MsBuild . Projects ) {
174
173
project . IsWebProject = isWebProject ( project . Path ) ;
175
174
@@ -185,9 +184,7 @@ export async function requestWorkspaceInformation(server: OmniSharpServer) {
185
184
) ;
186
185
187
186
project . IsBlazorWebAssemblyHosted = isProjectBlazorWebAssemblyHosted ;
188
- project . IsBlazorWebAssemblyStandalone =
189
- isProjectBlazorWebAssemblyProject && ! project . IsBlazorWebAssemblyHosted ;
190
-
187
+ project . IsBlazorWebAssemblyStandalone = isProjectBlazorWebAssemblyProject && ! project . IsBlazorWebAssemblyHosted ;
191
188
}
192
189
}
193
190
You can’t perform that action at this time.
0 commit comments