Skip to content

Commit c9f1c6e

Browse files
committed
Merge branch 'releases/6.1.0'
2 parents ee48cdd + c40f895 commit c9f1c6e

56 files changed

Lines changed: 423 additions & 191 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 28 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,16 @@
22
root=true
33

44
[*]
5-
trim_trailing_whitespace = true
5+
end_of_line = crlf
6+
indent_size = 4
7+
indent_style = space
68
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.cake]
712
indent_style = space
813
indent_size = 4
14+
tab_width = 4
915

1016
[*.{config,xml,js,json,html,css,sql,csproj,props,yml}]
1117
indent_size = 2
@@ -17,26 +23,30 @@ end_of_line = lf
1723
end_of_line = crlf
1824

1925
[{**/tests/**,**/Tests/**,**/*.Tests/**}.cs]
20-
resharper_class_never_instantiated_global_highlighting=do_not_show
21-
resharper_consider_using_configure_await_highlighting=do_not_show
22-
resharper_event_exception_not_documented_highlighting=do_not_show
23-
resharper_exception_not_documented_highlighting=do_not_show
24-
resharper_exception_not_documented_optional_highlighting=do_not_show
25-
resharper_heap_view_boxing_allocation=do_not_show
26-
resharper_heap_view_boxing_allocation_highlighting=do_not_show
27-
resharper_heap_view_closure_allocation_highlighting=do_not_show
28-
resharper_heap_view_delegate_allocation_highlighting=do_not_show
29-
resharper_heap_view_object_allocation_highlighting=do_not_show
30-
resharper_heap_view_object_allocation_evident_highlighting=do_not_show
31-
resharper_possible_null_reference_exception_highlighting=do_not_show
32-
resharper_private_field_can_be_converted_to_local_variable_highlighting=do_not_show
33-
resharper_return_value_of_pure_method_is_not_used_highlighting=do_not_show
34-
resharper_suggest_base_type_for_parameter_highlighting=do_not_show
35-
resharper_class_with_virtual_members_never_inherited_local_highlighting=do_not_show
36-
resharper_class_with_virtual_members_never_inherited_global_highlighting=do_not_show
26+
resharper_async_converter_async_await_may_be_elided_highlighting=do_not_show
27+
resharper_class_never_instantiated_global_highlighting = do_not_show
28+
resharper_class_with_virtual_members_never_inherited_global_highlighting = do_not_show
29+
resharper_class_with_virtual_members_never_inherited_local_highlighting = do_not_show
30+
resharper_consider_using_configure_await_highlighting = do_not_show
31+
resharper_event_exception_not_documented_highlighting = do_not_show
32+
resharper_exception_not_documented_highlighting = do_not_show
33+
resharper_exception_not_documented_optional_highlighting = do_not_show
34+
resharper_heap_view_boxing_allocation_highlighting = do_not_show
35+
resharper_heap_view_closure_allocation_highlighting = do_not_show
36+
resharper_heap_view_delegate_allocation_highlighting = do_not_show
37+
resharper_heap_view_object_allocation_evident_highlighting = do_not_show
38+
resharper_heap_view_object_allocation_highlighting = do_not_show
39+
resharper_inconsistent_naming_highlighting = do_not_show
40+
resharper_missing_annotation_highlighting = do_not_show
41+
resharper_missing_xml_doc_highlighting = do_not_show
42+
resharper_possible_null_reference_exception_highlighting = do_not_show
43+
resharper_private_field_can_be_converted_to_local_variable_highlighting = do_not_show
44+
resharper_return_value_of_pure_method_is_not_used_highlighting = do_not_show
45+
resharper_suggest_base_type_for_parameter_highlighting = do_not_show
3746

3847
[**/{Startup,Program}.cs]
3948
resharper_event_exception_not_documented_highlighting=do_not_show
4049
resharper_exception_not_documented_highlighting=do_not_show
4150
resharper_exception_not_documented_optional_highlighting=do_not_show
4251
resharper_heap_view_object_allocation_evident_highlighting=do_not_show
52+
resharper_missing_xml_doc_highlighting=do_not_show

.vscode/launch.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
// Use IntelliSense to find out which attributes exist for C# debugging
3+
// Use hover for the description of the existing attributes
4+
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
5+
"version": "0.2.0",
6+
"configurations": [
7+
]
8+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
namespace {{namespace}}
2+
{
3+
using System;
4+
5+
/// <summary>
6+
/// {{name}} description.
7+
/// </summary>
8+
public class {{name}}
9+
{
10+
}
11+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export class {{name}} {
2+
3+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Imports System
2+
3+
Namespace {{namespace}}
4+
5+
Public Class {{name}}
6+
7+
End Class
8+
9+
End Namespace
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export default {{name}} {
2+
3+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
namespace {{namespace}}
2+
{
3+
using System;
4+
5+
/// <summary>
6+
/// {{name}} description.
7+
/// </summary>
8+
public enum {{name}}
9+
{
10+
}
11+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
namespace {{namespace}}
2+
{
3+
using System;
4+
5+
/// <summary>
6+
/// {{name}} description.
7+
/// </summary>
8+
public interface {{name}}
9+
{
10+
}
11+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export interface {{name}} {
2+
3+
}
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"templates": [
3+
{
4+
"name": "Class",
5+
"extension": "cs",
6+
"file": "./class.cs-template",
7+
"parameters": "./template-parameters.js"
8+
},
9+
{
10+
"name": "Interface",
11+
"extension": "cs",
12+
"file": "./interface.cs-template",
13+
"parameters": "./template-parameters.js"
14+
},
15+
{
16+
"name": "Enum",
17+
"extension": "cs",
18+
"file": "./enum.cs-template",
19+
"parameters": "./template-parameters.js"
20+
},
21+
{
22+
"name": "Class",
23+
"extension": "ts",
24+
"file": "./class.ts-template",
25+
"parameters": "./template-parameters.js"
26+
},
27+
{
28+
"name": "Interface",
29+
"extension": "ts",
30+
"file": "./interface.ts-template",
31+
"parameters": "./template-parameters.js"
32+
},
33+
{
34+
"name": "Default",
35+
"extension": "ts",
36+
"file": "./default.ts-template",
37+
"parameters": "./template-parameters.js"
38+
},
39+
{
40+
"name": "Class",
41+
"extension": "vb",
42+
"file": "./class.vb-template",
43+
"parameters": "./template-parameters.js"
44+
}
45+
]
46+
}

0 commit comments

Comments
 (0)