diff options
author | Rob Mensching <rob@firegiant.com> | 2018-10-24 14:41:35 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2018-12-22 08:54:48 -0800 |
commit | 84f5848daadde7ffaa20c9bf2b10b2d8842dae62 (patch) | |
tree | 3f8dc5f70b5d635cb4bac9cf5ed914e48dfcab24 | |
parent | d9a6764a268a07ea159c39a8799e9bdf6efffb24 (diff) | |
download | wix-84f5848daadde7ffaa20c9bf2b10b2d8842dae62.tar.gz wix-84f5848daadde7ffaa20c9bf2b10b2d8842dae62.tar.bz2 wix-84f5848daadde7ffaa20c9bf2b10b2d8842dae62.zip |
Update to latest Home\repo-template
-rw-r--r-- | .editorconfig | 37 | ||||
-rw-r--r-- | appveyor.yml | 6 | ||||
-rw-r--r-- | src/Directory.Build.props | 2 | ||||
-rw-r--r-- | src/Directory.Build.targets | 5 |
4 files changed, 49 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..1d72e683 --- /dev/null +++ b/.editorconfig | |||
@@ -0,0 +1,37 @@ | |||
1 | # Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
2 | # | ||
3 | # Do NOT modify this file. Update the canonical version in Home\repo-template\src\.editorconfig | ||
4 | # then update all of the repos. | ||
5 | |||
6 | root = true | ||
7 | |||
8 | [*] | ||
9 | charset = utf-8 | ||
10 | indent_style = space | ||
11 | indent_size = 4 | ||
12 | trim_trailing_whitespace = true | ||
13 | |||
14 | [*.{cs,vb}] | ||
15 | dotnet_sort_system_directives_first = true | ||
16 | |||
17 | [*.cs] | ||
18 | csharp_indent_case_contents = true : error | ||
19 | csharp_indent_switch_labels = true : error | ||
20 | csharp_new_line_before_open_brace = all | ||
21 | csharp_prefer_braces = true : error | ||
22 | csharp_style_expression_bodied_methods = when_on_single_line : suggestion | ||
23 | csharp_style_expression_bodied_constructors = when_on_single_line : suggestion | ||
24 | csharp_style_expression_bodied_operators = when_on_single_line : suggestion | ||
25 | csharp_style_expression_bodied_properties = when_on_single_line : suggestion | ||
26 | csharp_style_expression_bodied_indexers = when_on_single_line : suggestion | ||
27 | csharp_style_expression_bodied_accessors = when_on_single_line : suggestion | ||
28 | csharp_style_var_elsewhere = true : suggestion | ||
29 | csharp_style_var_for_built_in_types = true : suggestion | ||
30 | csharp_style_var_when_type_is_apparent = true : suggestion | ||
31 | dotnet_style_qualification_for_event = true : error | ||
32 | dotnet_style_qualification_for_field = true : error | ||
33 | dotnet_style_qualification_for_method = true : error | ||
34 | dotnet_style_qualification_for_property = true : error | ||
35 | |||
36 | [*.targets] | ||
37 | indent_size = 2 | ||
diff --git a/appveyor.yml b/appveyor.yml index 0c74d54b..d55322da 100644 --- a/appveyor.yml +++ b/appveyor.yml | |||
@@ -1,3 +1,8 @@ | |||
1 | # Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
2 | # | ||
3 | # Do NOT modify this file. Update the canonical version in Home\repo-template\src\appveyor.yml | ||
4 | # then update all of the repos. | ||
5 | |||
1 | image: Visual Studio 2017 | 6 | image: Visual Studio 2017 |
2 | 7 | ||
3 | version: 0.0.0.{build} | 8 | version: 0.0.0.{build} |
@@ -17,6 +22,7 @@ pull_requests: | |||
17 | nuget: | 22 | nuget: |
18 | disable_publish_on_pr: true | 23 | disable_publish_on_pr: true |
19 | 24 | ||
25 | skip_branch_with_pr: true | ||
20 | skip_tags: true | 26 | skip_tags: true |
21 | 27 | ||
22 | artifacts: | 28 | artifacts: |
diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 35ef739b..f09c622b 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props | |||
@@ -1,7 +1,7 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | 2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> |
3 | <!-- | 3 | <!-- |
4 | Do NOT modify this file. Update the canonical version in Home\src\Directory.Build.props | 4 | Do NOT modify this file. Update the canonical version in Home\repo-template\src\Directory.Build.props |
5 | then update all of the repos. | 5 | then update all of the repos. |
6 | --> | 6 | --> |
7 | <Project> | 7 | <Project> |
diff --git a/src/Directory.Build.targets b/src/Directory.Build.targets index 48629385..dac7452a 100644 --- a/src/Directory.Build.targets +++ b/src/Directory.Build.targets | |||
@@ -1,4 +1,9 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
3 | <!-- | ||
4 | Do NOT modify this file. Update the canonical version in Home\repo-template\src\Directory.Build.targets | ||
5 | then update all of the repos. | ||
6 | --> | ||
2 | <!-- | 7 | <!-- |
3 | Replace PackageReferences with ProjectReferences when the projects can be found in .sln. | 8 | Replace PackageReferences with ProjectReferences when the projects can be found in .sln. |
4 | See the original here: https://github.com/dotnet/sdk/issues/1151#issuecomment-385133284 | 9 | See the original here: https://github.com/dotnet/sdk/issues/1151#issuecomment-385133284 |