Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ejsmith committed Mar 7, 2022
1 parent 73e75a7 commit e25ee60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Foundatio.Parsers.LuceneQueries/QueryValidation.cs
Expand Up @@ -17,7 +17,7 @@ public class QueryValidationOptions {

[DebuggerDisplay("IsValid: {IsValid} Message: {Message} Type: {QueryType}")]
public class QueryValidationResult {
private ConcurrentDictionary<string, ICollection<string>> _operations = new ConcurrentDictionary<string, ICollection<string>>(StringComparer.OrdinalIgnoreCase);
private ConcurrentDictionary<string, ICollection<string>> _operations = new(StringComparer.OrdinalIgnoreCase);

public string QueryType { get; set; }
public bool IsValid => ValidationErrors.Count == 0;
Expand Down
2 changes: 1 addition & 1 deletion tests/Directory.Build.props
Expand Up @@ -9,7 +9,7 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
<PackageReference Include="Foundatio.TestHarness" Version="10.3.1" Condition="'$(ReferenceFoundatioSource)' == '' OR '$(ReferenceFoundatioSource)' == 'false'" />
<PackageReference Include="Foundatio.TestHarness" Version="10.4.0" Condition="'$(ReferenceFoundatioSource)' == '' OR '$(ReferenceFoundatioSource)' == 'false'" />

<ProjectReference Include="..\..\..\Foundatio\src\Foundatio.TestHarness\Foundatio.TestHarness.csproj" Condition="'$(ReferenceFoundatioSource)' == 'true'" />
</ItemGroup>
Expand Down

0 comments on commit e25ee60

Please sign in to comment.