-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix handling of poorly formatted headers (mosty commonly user-agents)…
… in mock message handler.
- Loading branch information
Troy Willmot
committed
Oct 17, 2018
1 parent
ed1ba83
commit 3b493c9
Showing
5 changed files
with
46 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
[*] | ||
end_of_line = crlf | ||
indent_size = tab | ||
tab_width = 2 | ||
|
||
[*.{cs,vb,xml}] | ||
charset = utf-8 | ||
dotnet_sort_system_directives_first = true:none | ||
dotnet_style_coalesce_expression = true:none | ||
dotnet_style_explicit_tuple_names = true:warning | ||
dotnet_style_null_propagation = true:suggestion | ||
dotnet_style_predefined_type_for_locals_parameters_members = true:none | ||
dotnet_style_predefined_type_for_member_access = false:none | ||
dotnet_style_qualification_for_event = false:none | ||
dotnet_style_qualification_for_field = false:none | ||
dotnet_style_qualification_for_method = false:none | ||
dotnet_style_qualification_for_property = false:none | ||
|
||
[*.cs] | ||
csharp_style_conditional_delegate_call = true:suggestion | ||
csharp_style_expression_bodied_accessors = false:suggestion | ||
csharp_style_expression_bodied_constructors = false:suggestion | ||
csharp_style_expression_bodied_indexers = false:suggestion | ||
csharp_style_expression_bodied_methods = false:suggestion | ||
csharp_style_expression_bodied_operators = false:suggestion | ||
csharp_style_expression_bodied_properties = false:suggestion | ||
csharp_style_inlined_variable_declaration = true:suggestion | ||
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion | ||
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion | ||
csharp_style_throw_expression = false:none | ||
csharp_style_var_elsewhere = true:suggestion | ||
csharp_style_var_for_built_in_types = true:suggestion | ||
csharp_style_var_when_type_is_apparent = true:suggestion | ||
csharp_new_line_before_catch = true:none | ||
csharp_new_line_before_else = true:none | ||
csharp_new_line_before_finally = true:none | ||
csharp_new_line_between_query_expression_clauses = true:none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
@echo off | ||
echo Press any key to publish | ||
pause | ||
".nuget\NuGet.exe" push Yort.Http.ClientPipeline.1.0.0.7.nupkg | ||
".nuget\NuGet.exe" push Yort.Http.ClientPipeline.1.0.0.8.nupkg | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters