public void FilesFormattedFolder() { var(workspacePath, workspaceType) = WorkspacePathHelper.GetWorkspaceInfo(UnformattedFolderFilePath); var options = new FormatOptions( workspacePath, workspaceType, noRestore: false, LogLevel.Error, fixCategory: FixCategory.Whitespace, codeStyleSeverity: DiagnosticSeverity.Error, analyzerSeverity: DiagnosticSeverity.Error, diagnostics: ImmutableHashSet <string> .Empty, saveFormattedFiles: false, changesAreErrors: false, AllFileMatcher, reportPath: string.Empty, includeGeneratedFiles: false); _ = CodeFormatter.FormatWorkspaceAsync(options, EmptyLogger, default).GetAwaiter().GetResult(); }
public void FilesFormattedSolution() { var(workspacePath, workspaceType) = WorkspacePathHelper.GetWorkspaceInfo(UnformattedSolutionFilePath); var options = new FormatOptions( workspacePath, workspaceType, NoRestore: false, LogLevel.Error, FixCategory: FixCategory.Whitespace, CodeStyleSeverity: DiagnosticSeverity.Error, AnalyzerSeverity: DiagnosticSeverity.Error, Diagnostics: ImmutableHashSet <string> .Empty, SaveFormattedFiles: false, ChangesAreErrors: false, AllFileMatcher, ReportPath: string.Empty, IncludeGeneratedFiles: false, BinaryLogPath: null); _ = CodeFormatter.FormatWorkspaceAsync(options, EmptyLogger, default).GetAwaiter().GetResult(); }