mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Across the board package updates
This commit is contained in:
@@ -31,6 +31,9 @@ namespace SabreTools.Test.Core
|
||||
public void GetDepotPathTest(string? hash, int depth, string? expected)
|
||||
{
|
||||
string? actual = Utilities.GetDepotPath(hash, depth);
|
||||
if (System.IO.Path.DirectorySeparatorChar == '/')
|
||||
expected = expected?.Replace('\\', '/');
|
||||
|
||||
Assert.Equal(expected, actual);
|
||||
}
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ namespace SabreTools.Test.DatFiles
|
||||
var actual = datHeader.CreateOutFileNames(outDir, overwrite: true);
|
||||
|
||||
// Check the result
|
||||
string expected = $"{outDir}\\test.{extension}";
|
||||
string expected = $"{outDir}{System.IO.Path.DirectorySeparatorChar}test.{extension}";
|
||||
Assert.Single(actual);
|
||||
Assert.Equal(expected, actual[datFormat]);
|
||||
}
|
||||
|
||||
@@ -32,8 +32,8 @@
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
|
||||
<PackageReference Include="SabreTools.Models" Version="1.4.5" />
|
||||
<PackageReference Include="SabreTools.Serialization" Version="1.6.0" />
|
||||
<PackageReference Include="SabreTools.Models" Version="1.4.8" />
|
||||
<PackageReference Include="SabreTools.Serialization" Version="1.6.7" />
|
||||
<PackageReference Include="xunit" Version="2.7.1" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.8">
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
|
||||
Reference in New Issue
Block a user