Skip to content

Commit 234a932

Browse files
authored
Fix prettier
1 parent 02b7c39 commit 234a932

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/omnisharp/utils.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,6 @@ export async function requestProjectInformation(server: OmniSharpServer, request
169169
export 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

0 commit comments

Comments
 (0)