Skip to content

Commit 9483da6

Browse files
committed
Initial project setup for FileCopyHelper
Add core project files for FileCopyHelper, including solution, main forms, dialogs, models, services, resources, and configuration. Implements file conflict and configuration save dialogs, sets up Windows Forms application targeting .NET Framework 4.7.2, and includes required dependencies and build scripts.
0 parents  commit 9483da6

40 files changed

+3332
-0
lines changed

.editorconfig

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = crlf
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 4
9+
trim_trailing_whitespace = true
10+
11+
[*.{cs,vb}]
12+
dotnet_sort_system_directives_first = true
13+
dotnet_separate_import_directive_groups = false
14+
15+
[*.cs]
16+
csharp_new_line_before_open_brace = all
17+
csharp_new_line_before_else = true
18+
csharp_new_line_before_catch = true
19+
csharp_new_line_before_finally = true
20+
csharp_new_line_before_members_in_object_initializers = true
21+
csharp_new_line_before_members_in_anonymous_types = true
22+
csharp_new_line_between_query_expression_clauses = true
23+
24+
[*.{json,xml}]
25+
indent_size = 2
26+
27+
[*.{props,targets}]
28+
indent_size = 2
Binary file not shown.
Binary file not shown.
96.8 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
356 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)