File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -343,6 +343,7 @@ resharper_braces_for_for = required
343343
344344resharper_return_value_of_pure_method_is_not_used_highlighting = error
345345
346+ resharper_member_hides_interface_member_with_default_implementation_highlighting = error
346347
347348resharper_misleading_body_like_statement_highlighting = error
348349
Original file line number Diff line number Diff line change 66* .DotSettings.user
77.idea /
88* .received. *
9- nugets /
9+ nugets /
10+ TestResults
Original file line number Diff line number Diff line change 11<wpf : ResourceDictionary xml : space =" preserve" xmlns : x =" http://schemas.microsoft.com/winfx/2006/xaml" xmlns : s =" clr-namespace:System;assembly=mscorlib" xmlns : ss =" urn:shemas-jetbrains-com:settings-storage-xaml" xmlns : wpf =" http://schemas.microsoft.com/winfx/2006/xaml/presentation" >
2+ <s : String x : Key =" /Default/CodeInspection/Highlighting/InspectionSeverities/=InconsistentNaming/@EntryIndexedValue" >DO_NOT_SHOW</s : String >
3+ <s : Boolean x : Key =" /Default/CodeStyle/Naming/CSharpNaming/ApplyAutoDetectedRules/@EntryValue" >False</s : Boolean >
24 <s : Boolean x : Key =" /Default/Environment/Hierarchy/Build/SolutionBuilderNext/LogToFile/@EntryValue" >False</s : Boolean >
35 <s : String x : Key =" /Default/Environment/Hierarchy/Build/SolutionBuilderNext/OutputVerbosityLevel/@EntryValue" >Quiet</s : String >
46 <s : Boolean x : Key =" /Default/CodeEditing/ContextActionTable/DisabledContextActions/=JetBrains_002EReSharper_002EIntentions_002ECSharp_002EContextActions_002EUseConfigureAwaitFalseAction/@EntryIndexedValue" >True</s : Boolean >
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public async Task DebugFormat_formats_message()
4848 await Assert . That ( mockLogger . LogEntries ) . HasSingleItem ( ) ;
4949 await Assert . That ( mockLogger . LogEntries [ 0 ] . Level ) . IsEqualTo ( MsLogLevel . Debug ) ;
5050 await Assert . That ( mockLogger . LogEntries [ 0 ] . Message ) . IsEqualTo ( "value is {0}" ) ;
51- await Assert . That ( mockLogger . LogEntries [ 0 ] . Args ) . IsEqualTo ( [ 42 ] ) ;
51+ await Assert . That ( mockLogger . LogEntries [ 0 ] . Args ) . IsEquivalentTo ( new object [ ] { 42 } ) ;
5252 }
5353
5454 [ Test ]
@@ -90,7 +90,7 @@ public async Task InfoFormat_formats_message()
9090 await Assert . That ( mockLogger . LogEntries ) . HasSingleItem ( ) ;
9191 await Assert . That ( mockLogger . LogEntries [ 0 ] . Level ) . IsEqualTo ( MsLogLevel . Information ) ;
9292 await Assert . That ( mockLogger . LogEntries [ 0 ] . Message ) . IsEqualTo ( "user {0} logged in at {1}" ) ;
93- await Assert . That ( mockLogger . LogEntries [ 0 ] . Args ) . IsEqualTo ( [ "alice" , "10:00" ] ) ;
93+ await Assert . That ( mockLogger . LogEntries [ 0 ] . Args ) . IsEquivalentTo ( new object [ ] { "alice" , "10:00" } ) ;
9494 }
9595
9696 [ Test ]
Original file line number Diff line number Diff line change 55 <UseMicrosoftTestingPlatformRunner >true</UseMicrosoftTestingPlatformRunner >
66 </PropertyGroup >
77 <ItemGroup >
8- <Using Include =" Xunit" />
98 <Compile Remove =" Snippets\ProgramService.cs" />
109 </ItemGroup >
1110 <ItemGroup >
You can’t perform that action at this time.
0 commit comments