Skip to content

Commit

Permalink
Resolve dependency conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyrrrz committed Oct 1, 2024
1 parent e4671e5 commit 093b676
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CliFx.Analyzers.Tests/CliFx.Analyzers.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PackageReference Include="GitHubActionsTestLogger" Version="2.4.1" PrivateAssets="all" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" PrivateAssets="all" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion CliFx.Analyzers.Tests/Utils/AnalyzerAssertions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ private Compilation Compile(string sourceCode)
{
"System",
"System.Collections.Generic",
"System.Threading.Tasks"
"System.Threading.Tasks",
};

// Get default CliFx namespaces
Expand Down
2 changes: 1 addition & 1 deletion CliFx.Tests/CliFx.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PackageReference Include="CSharpier.MsBuild" Version="0.29.1" PrivateAssets="all" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="GitHubActionsTestLogger" Version="2.4.1" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.0" />
<PackageReference Include="PolyShim" Version="1.12.0" PrivateAssets="all" />
Expand Down
2 changes: 1 addition & 1 deletion CliFx.Tests/Utils/DynamicCommandBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static IReadOnlyList<Type> CompileMany(string sourceCode)
"System.Collections.Generic",
"System.Linq",
"System.Threading.Tasks",
"System.Globalization"
"System.Globalization",
};

// Get default CliFx namespaces
Expand Down
2 changes: 1 addition & 1 deletion CliFx/Input/OptionInput.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ public string GetFormattedIdentifier() =>
Identifier switch
{
{ Length: >= 2 } => "--" + Identifier,
_ => '-' + Identifier
_ => '-' + Identifier,
};
}
2 changes: 1 addition & 1 deletion CliFx/Schema/IMemberSchema.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ public static string GetKind(this IMemberSchema memberSchema) =>
{
ParameterSchema => "Parameter",
OptionSchema => "Option",
_ => throw new ArgumentOutOfRangeException(nameof(memberSchema))
_ => throw new ArgumentOutOfRangeException(nameof(memberSchema)),
};
}

0 comments on commit 093b676

Please sign in to comment.