Skip to content

Commit 0a2f8db

Browse files
committed
.
1 parent 7a3a703 commit 0a2f8db

5 files changed

Lines changed: 7 additions & 4 deletions

File tree

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,7 @@ resharper_braces_for_for = required
343343

344344
resharper_return_value_of_pure_method_is_not_used_highlighting = error
345345

346+
resharper_member_hides_interface_member_with_default_implementation_highlighting = error
346347

347348
resharper_misleading_body_like_statement_highlighting = error
348349

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ obj/
66
*.DotSettings.user
77
.idea/
88
*.received.*
9-
nugets/
9+
nugets/
10+
TestResults

src/Shared.sln.DotSettings

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
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>

src/Tests/LoggerTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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]

src/Tests/Tests.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
<UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner>
66
</PropertyGroup>
77
<ItemGroup>
8-
<Using Include="Xunit" />
98
<Compile Remove="Snippets\ProgramService.cs" />
109
</ItemGroup>
1110
<ItemGroup>

0 commit comments

Comments
 (0)