Skip to content

Commit 5170b95

Browse files
committed
Dependency update
1 parent 7003c1f commit 5170b95

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

NodeSwap.Tests/VersionParserTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ public void Parse_ShouldParseProperly(string rawInput, Version version)
3232
[TestMethod]
3333
public void Parse_ShouldThrowExceptionOnInvalidInput()
3434
{
35-
Assert.ThrowsException<ArgumentException>(() => VersionParser.Parse("a"));
36-
Assert.ThrowsException<ArgumentException>(() => VersionParser.Parse("1.a"));
37-
Assert.ThrowsException<ArgumentException>(() => VersionParser.Parse("1.2.a"));
35+
Assert.ThrowsException<FormatException>(() => VersionParser.Parse("a"));
36+
Assert.ThrowsException<FormatException>(() => VersionParser.Parse("1.a"));
37+
Assert.ThrowsException<FormatException>(() => VersionParser.Parse("1.2.a"));
3838
}
3939

4040
[TestMethod]

NodeSwap/NodeSwap.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
</PropertyGroup>
3434

3535
<ItemGroup>
36-
<PackageReference Include="DotMake.CommandLine" Version="1.8.8" />
37-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0-preview.7.24405.7" />
38-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.0-preview.7.24405.7" />
39-
<PackageReference Include="NuGet.Versioning" Version="5.10.0-preview.2.7185" />
40-
<PackageReference Include="ShellProgressBar" Version="5.1.0" />
41-
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.21216.1" />
36+
<PackageReference Include="DotMake.CommandLine" Version="1.9.0" />
37+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.0-preview.2.25163.2" />
38+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.0-preview.2.25163.2" />
39+
<PackageReference Include="NuGet.Versioning" Version="6.13.2" />
40+
<PackageReference Include="ShellProgressBar" Version="5.2.0" />
41+
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
4242
</ItemGroup>
4343

4444
</Project>

0 commit comments

Comments
 (0)