Skip to content

Commit

Permalink
move System.Management back to 8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Nov 15, 2024
1 parent a3e517c commit 7f6200d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions src/DiffEngine.Tests/VersionTest.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
public class VersionTest
{
[Fact]
public void Run()
{
var version = typeof(System.Management.ManagementObject).Assembly.GetName().Version!;
Assert.Equal("8.0.0.0", version.ToString());
}
}
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project>
<PropertyGroup>
<NoWarn>CS1591;CS0649</NoWarn>
<Version>15.5.4</Version>
<Version>15.5.5</Version>
<AssemblyVersion>1.0.0</AssemblyVersion>
<PackageTags>Testing, Snapshot, Diff, Compare</PackageTags>
<Description>Launches diff tools based on file extensions. Designed to be consumed by snapshot testing libraries.</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<PackageVersion Include="System.Collections.Immutable" Version="9.0.0" />
<PackageVersion Include="System.Globalization.Extensions" Version="4.3.0" />
<PackageVersion Include="System.IO.Compression" Version="4.3.0" />
<PackageVersion Include="System.Management" Version="9.0.0" />
<PackageVersion Include="System.Management" Version="8.0.0" />
<PackageVersion Include="System.Net.Http" Version="4.3.4" />
<PackageVersion Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
<PackageVersion Include="System.Text.Json" Version="9.0.0" />
Expand Down

0 comments on commit 7f6200d

Please sign in to comment.