Skip to content

Commit

Permalink
Update code generate Indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
WeihanLi committed Apr 22, 2022
1 parent 614d1a1 commit 4293998
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/DbTool/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ private void ExportModel_Click(object sender, RoutedEventArgs e)
GeneratePrivateFields = CbGenPrivateFields.IsChecked == true,
GlobalUsingEnabled = CbGlobalUsing.IsChecked == true,
NullableReferenceTypesEnabled = CbNullableReferenceTypes.IsChecked == true,
FileScopedNamespaceEnabled = CbFileScopedNamespace.IsChecked == true
FileScopedNamespaceEnabled = CbFileScopedNamespace.IsChecked == true,
Indentation = " "
};
var dir = ChooseFolder();
if (string.IsNullOrEmpty(dir))
Expand Down

0 comments on commit 4293998

Please sign in to comment.