We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f26986 commit 5c39c42Copy full SHA for 5c39c42
Vsix/ConverterSettings.cs
@@ -0,0 +1,23 @@
1
+using System.Runtime.Serialization;
2
+using Microsoft.VisualStudio.Extensibility;
3
+
4
+namespace ICSharpCode.CodeConverter.VsExtension;
5
6
+[DataContract]
7
+public class ConverterSettings
8
+{
9
+ [DataMember]
10
+ public bool CopyResultToClipboardForSingleDocument { get; set; }
11
12
13
+ public bool AlwaysOverwriteFiles { get; set; }
14
15
16
+ public bool CreateBackups { get; set; } = true;
17
18
19
+ public int FormattingTimeoutMinutes { get; set; } = 15;
20
21
22
+ public bool BypassAssemblyLoadingErrors { get; set; }
23
+}
0 commit comments