Skip to content

Commit 619c898

Browse files
authored
git add --renormalize . (#35)
1 parent 4dd2159 commit 619c898

File tree

84 files changed

+6650
-6650
lines changed

Some content is hidden

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

84 files changed

+6650
-6650
lines changed

.editorconfig

Lines changed: 67 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -49,73 +49,73 @@ dotnet_sort_system_directives_first = true
4949

5050
# Inspired by, but modified from, the Roslyn style: https://github.com/dotnet/roslyn/blob/75fcec13fdaa6f0f38f8ef1d7238d947df55cf5e/.editorconfig#L59
5151

52-
# Non-private static fields are PascalCase
53-
dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.severity = suggestion
54-
dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.symbols = non_private_static_fields
55-
dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.style = non_private_static_field_style
56-
57-
dotnet_naming_symbols.non_private_static_fields.applicable_kinds = field
58-
dotnet_naming_symbols.non_private_static_fields.applicable_accessibilities = public, protected, internal, protected_internal, private_protected
59-
dotnet_naming_symbols.non_private_static_fields.required_modifiers = static
60-
61-
dotnet_naming_style.non_private_static_field_style.capitalization = pascal_case
62-
63-
# Non-private readonly fields are PascalCase
64-
dotnet_naming_rule.non_private_readonly_fields_should_be_pascal_case.severity = suggestion
65-
dotnet_naming_rule.non_private_readonly_fields_should_be_pascal_case.symbols = non_private_readonly_fields
66-
dotnet_naming_rule.non_private_readonly_fields_should_be_pascal_case.style = non_private_readonly_field_style
67-
68-
dotnet_naming_symbols.non_private_readonly_fields.applicable_kinds = field
69-
dotnet_naming_symbols.non_private_readonly_fields.applicable_accessibilities = public, protected, internal, protected_internal, private_protected
70-
dotnet_naming_symbols.non_private_readonly_fields.required_modifiers = readonly
71-
72-
dotnet_naming_style.non_private_readonly_field_style.capitalization = pascal_case
73-
74-
# Constants are PascalCase
75-
dotnet_naming_rule.constants_should_be_pascal_case.severity = suggestion
76-
dotnet_naming_rule.constants_should_be_pascal_case.symbols = constants
77-
dotnet_naming_rule.constants_should_be_pascal_case.style = constant_style
78-
79-
dotnet_naming_symbols.constants.applicable_kinds = field, local
80-
dotnet_naming_symbols.constants.required_modifiers = const
81-
82-
dotnet_naming_style.constant_style.capitalization = pascal_case
83-
84-
# Instance fields are camelCase and start with _
85-
dotnet_naming_rule.instance_fields_should_be_camel_case.severity = suggestion
86-
dotnet_naming_rule.instance_fields_should_be_camel_case.symbols = instance_fields
87-
dotnet_naming_rule.instance_fields_should_be_camel_case.style = instance_field_style
88-
89-
dotnet_naming_symbols.instance_fields.applicable_kinds = field
90-
91-
dotnet_naming_style.instance_field_style.capitalization = camel_case
92-
dotnet_naming_style.instance_field_style.required_prefix = _
93-
94-
# Locals and parameters are camelCase
95-
dotnet_naming_rule.locals_should_be_camel_case.severity = suggestion
96-
dotnet_naming_rule.locals_should_be_camel_case.symbols = locals_and_parameters
97-
dotnet_naming_rule.locals_should_be_camel_case.style = camel_case_style
98-
99-
dotnet_naming_symbols.locals_and_parameters.applicable_kinds = parameter, local
100-
101-
dotnet_naming_style.camel_case_style.capitalization = camel_case
102-
103-
# Local functions are PascalCase
104-
dotnet_naming_rule.local_functions_should_be_pascal_case.severity = suggestion
105-
dotnet_naming_rule.local_functions_should_be_pascal_case.symbols = local_functions
106-
dotnet_naming_rule.local_functions_should_be_pascal_case.style = local_function_style
107-
108-
dotnet_naming_symbols.local_functions.applicable_kinds = local_function
109-
110-
dotnet_naming_style.local_function_style.capitalization = pascal_case
111-
112-
# By default, name items with PascalCase
113-
dotnet_naming_rule.members_should_be_pascal_case.severity = suggestion
114-
dotnet_naming_rule.members_should_be_pascal_case.symbols = all_members
115-
dotnet_naming_rule.members_should_be_pascal_case.style = pascal_case_style
116-
117-
dotnet_naming_symbols.all_members.applicable_kinds = *
118-
52+
# Non-private static fields are PascalCase
53+
dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.severity = suggestion
54+
dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.symbols = non_private_static_fields
55+
dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.style = non_private_static_field_style
56+
57+
dotnet_naming_symbols.non_private_static_fields.applicable_kinds = field
58+
dotnet_naming_symbols.non_private_static_fields.applicable_accessibilities = public, protected, internal, protected_internal, private_protected
59+
dotnet_naming_symbols.non_private_static_fields.required_modifiers = static
60+
61+
dotnet_naming_style.non_private_static_field_style.capitalization = pascal_case
62+
63+
# Non-private readonly fields are PascalCase
64+
dotnet_naming_rule.non_private_readonly_fields_should_be_pascal_case.severity = suggestion
65+
dotnet_naming_rule.non_private_readonly_fields_should_be_pascal_case.symbols = non_private_readonly_fields
66+
dotnet_naming_rule.non_private_readonly_fields_should_be_pascal_case.style = non_private_readonly_field_style
67+
68+
dotnet_naming_symbols.non_private_readonly_fields.applicable_kinds = field
69+
dotnet_naming_symbols.non_private_readonly_fields.applicable_accessibilities = public, protected, internal, protected_internal, private_protected
70+
dotnet_naming_symbols.non_private_readonly_fields.required_modifiers = readonly
71+
72+
dotnet_naming_style.non_private_readonly_field_style.capitalization = pascal_case
73+
74+
# Constants are PascalCase
75+
dotnet_naming_rule.constants_should_be_pascal_case.severity = suggestion
76+
dotnet_naming_rule.constants_should_be_pascal_case.symbols = constants
77+
dotnet_naming_rule.constants_should_be_pascal_case.style = constant_style
78+
79+
dotnet_naming_symbols.constants.applicable_kinds = field, local
80+
dotnet_naming_symbols.constants.required_modifiers = const
81+
82+
dotnet_naming_style.constant_style.capitalization = pascal_case
83+
84+
# Instance fields are camelCase and start with _
85+
dotnet_naming_rule.instance_fields_should_be_camel_case.severity = suggestion
86+
dotnet_naming_rule.instance_fields_should_be_camel_case.symbols = instance_fields
87+
dotnet_naming_rule.instance_fields_should_be_camel_case.style = instance_field_style
88+
89+
dotnet_naming_symbols.instance_fields.applicable_kinds = field
90+
91+
dotnet_naming_style.instance_field_style.capitalization = camel_case
92+
dotnet_naming_style.instance_field_style.required_prefix = _
93+
94+
# Locals and parameters are camelCase
95+
dotnet_naming_rule.locals_should_be_camel_case.severity = suggestion
96+
dotnet_naming_rule.locals_should_be_camel_case.symbols = locals_and_parameters
97+
dotnet_naming_rule.locals_should_be_camel_case.style = camel_case_style
98+
99+
dotnet_naming_symbols.locals_and_parameters.applicable_kinds = parameter, local
100+
101+
dotnet_naming_style.camel_case_style.capitalization = camel_case
102+
103+
# Local functions are PascalCase
104+
dotnet_naming_rule.local_functions_should_be_pascal_case.severity = suggestion
105+
dotnet_naming_rule.local_functions_should_be_pascal_case.symbols = local_functions
106+
dotnet_naming_rule.local_functions_should_be_pascal_case.style = local_function_style
107+
108+
dotnet_naming_symbols.local_functions.applicable_kinds = local_function
109+
110+
dotnet_naming_style.local_function_style.capitalization = pascal_case
111+
112+
# By default, name items with PascalCase
113+
dotnet_naming_rule.members_should_be_pascal_case.severity = suggestion
114+
dotnet_naming_rule.members_should_be_pascal_case.symbols = all_members
115+
dotnet_naming_rule.members_should_be_pascal_case.style = pascal_case_style
116+
117+
dotnet_naming_symbols.all_members.applicable_kinds = *
118+
119119
dotnet_naming_style.pascal_case_style.capitalization = pascal_case
120120

121121
# Don't use "this." anywhere.

Build.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
@echo off
2-
powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0eng\common\Build.ps1""" -restore -build %*"
1+
@echo off
2+
powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0eng\common\Build.ps1""" -restore -build %*"

CODE_OF_CONDUCT.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Microsoft Open Source Code of Conduct
2-
3-
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
4-
5-
Resources:
6-
7-
- [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/)
8-
- [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
9-
- Contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with questions or concerns
1+
# Microsoft Open Source Code of Conduct
2+
3+
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
4+
5+
Resources:
6+
7+
- [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/)
8+
- [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
9+
- Contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with questions or concerns

Directory.Build.props

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project>
3-
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" />
4-
5-
<PropertyGroup>
6-
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
7-
<PackageIcon></PackageIcon>
8-
<PackageIconFullPath></PackageIconFullPath>
9-
</PropertyGroup>
10-
<PropertyGroup>
11-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
12-
<StrongNameKeyId>Microsoft</StrongNameKeyId>
13-
<EmbedUntrackedSources>true</EmbedUntrackedSources>
14-
</PropertyGroup>
15-
16-
<PropertyGroup>
17-
<MoqPublicKey>0024000004800000940000000602000000240000525341310004000001000100c547cac37abd99c8db225ef2f6c8a3602f3b3606cc9891605d02baa56104f4cfc0734aa39b93bf7852f7d9266654753cc297e7d2edfe0bac1cdcf9f717241550e0a7b191195b7667bb4f64bcb8e2121380fd1d9d46ad2d92d2d15605093924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7d3113e92484cf7045cc7</MoqPublicKey>
18-
</PropertyGroup>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project>
3+
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" />
4+
5+
<PropertyGroup>
6+
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
7+
<PackageIcon></PackageIcon>
8+
<PackageIconFullPath></PackageIconFullPath>
9+
</PropertyGroup>
10+
<PropertyGroup>
11+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
12+
<StrongNameKeyId>Microsoft</StrongNameKeyId>
13+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
14+
</PropertyGroup>
15+
16+
<PropertyGroup>
17+
<MoqPublicKey>0024000004800000940000000602000000240000525341310004000001000100c547cac37abd99c8db225ef2f6c8a3602f3b3606cc9891605d02baa56104f4cfc0734aa39b93bf7852f7d9266654753cc297e7d2edfe0bac1cdcf9f717241550e0a7b191195b7667bb4f64bcb8e2121380fd1d9d46ad2d92d2d15605093924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7d3113e92484cf7045cc7</MoqPublicKey>
18+
</PropertyGroup>
1919
</Project>

Directory.Build.targets

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project>
3-
<Import Project="Sdk.targets" Sdk="Microsoft.DotNet.Arcade.Sdk" />
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project>
3+
<Import Project="Sdk.targets" Sdk="Microsoft.DotNet.Arcade.Sdk" />
44
</Project>

Pack.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
@echo off
2-
powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0eng\common\Build.ps1""" -restore -build -pack %*"
1+
@echo off
2+
powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0eng\common\Build.ps1""" -restore -build -pack %*"

README.md

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
1-
# Welcome to the YARP project
2-
3-
There is some debate whether YARP stands for "Yet Another Reverse Proxy", or "YARP a Reverse Proxy", but either way it's a project to create a reverse proxy server. You may ask whether the world needs another
4-
reverse proxy, but we found a bunch of internal teams at Microsoft who were either building one for their service
5-
or had been asking about APIs and tech for building one, so we decided to get them all together to work on a common solution, this project.
6-
7-
YARP is a reverse proxy toolkit for building fast proxy servers in C# using the infrastructure from ASP.NET and .NET Core. The key differentiator for YARP is that it's been designed to be easily customized and tweaked to match the specific needs of each deployment scenario.
8-
9-
We expect YARP to ship as a library and project template that together provide a robust, performant proxy server. Its pipeline and modules are designed so that you can then customize the functionality for your needs. For example, while YARP supports configuration files, we expect that many users will want to manage the configuration programmatically based on their own backend configuration management system, YARP will provide a configuration API to enable that customization in-proc. YARP is designed with customizability as a primary scenario, rather than requiring you to break out to script or having to rebuild from source.
10-
11-
# Build
12-
13-
Coming Soon
14-
15-
# Getting started
16-
17-
Coming Soon
18-
19-
# Roadmap
20-
21-
Coming Soon
22-
23-
# Contributing
24-
25-
This project welcomes contributions and suggestions. Most contributions require you to agree to a
26-
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
27-
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
28-
29-
When you submit a pull request, a CLA bot will automatically determine whether you need to provide
30-
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
31-
provided by the bot. You will only need to do this once across all repos using our CLA.
32-
33-
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
34-
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
1+
# Welcome to the YARP project
2+
3+
There is some debate whether YARP stands for "Yet Another Reverse Proxy", or "YARP a Reverse Proxy", but either way it's a project to create a reverse proxy server. You may ask whether the world needs another
4+
reverse proxy, but we found a bunch of internal teams at Microsoft who were either building one for their service
5+
or had been asking about APIs and tech for building one, so we decided to get them all together to work on a common solution, this project.
6+
7+
YARP is a reverse proxy toolkit for building fast proxy servers in C# using the infrastructure from ASP.NET and .NET Core. The key differentiator for YARP is that it's been designed to be easily customized and tweaked to match the specific needs of each deployment scenario.
8+
9+
We expect YARP to ship as a library and project template that together provide a robust, performant proxy server. Its pipeline and modules are designed so that you can then customize the functionality for your needs. For example, while YARP supports configuration files, we expect that many users will want to manage the configuration programmatically based on their own backend configuration management system, YARP will provide a configuration API to enable that customization in-proc. YARP is designed with customizability as a primary scenario, rather than requiring you to break out to script or having to rebuild from source.
10+
11+
# Build
12+
13+
Coming Soon
14+
15+
# Getting started
16+
17+
Coming Soon
18+
19+
# Roadmap
20+
21+
Coming Soon
22+
23+
# Contributing
24+
25+
This project welcomes contributions and suggestions. Most contributions require you to agree to a
26+
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
27+
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
28+
29+
When you submit a pull request, a CLA bot will automatically determine whether you need to provide
30+
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
31+
provided by the bot. You will only need to do this once across all repos using our CLA.
32+
33+
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
34+
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
3535
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.

Restore.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
@echo off
1+
@echo off
22
powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0eng\common\Build.ps1""" -restore %*"

0 commit comments

Comments
 (0)