Skip to content
This repository has been archived by the owner on Oct 2, 2023. It is now read-only.

Commit

Permalink
Clean up nested dependencies (#52)
Browse files Browse the repository at this point in the history
* clean up dependencies

* update dependencies

* update dependencies
  • Loading branch information
Raffaello authored Dec 19, 2022
1 parent eb10408 commit 8ad7096
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 15 deletions.
2 changes: 2 additions & 0 deletions PowerDir.Tests/EscapeCodesThemesTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,9 @@ public void TestDisplayResultsColor16FileLink()

fi.Attributes = fa;
Assert.IsNotNull(finfo.LinkTarget);
#pragma warning disable CS8604 // Possible null reference argument.
fi = new(finfo.LinkTarget);
#pragma warning restore CS8604 // Possible null reference argument.

var info = new GetPowerDirInfo(fi, Directory.GetCurrentDirectory());
Assert.IsTrue(info.Link);
Expand Down
16 changes: 6 additions & 10 deletions PowerDir.Tests/PowerDir.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,15 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="coverlet.msbuild" Version="3.1.2">
<PackageReference Include="coverlet.msbuild" Version="3.2.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.0" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.6" />
<!-- remove the below when updating powershell sdk pacakge -->
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<!-- remove the below when updating powershell sdk pacakge -->
<PackageReference Include="System.Security.Cryptography.Xml" Version="6.0.1" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
<PackageReference Include="coverlet.collector" Version="3.1.2">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.7" />
<PackageReference Include="MSTest.TestAdapter" Version="3.0.0" />
<PackageReference Include="MSTest.TestFramework" Version="3.0.0" />
<PackageReference Include="coverlet.collector" Version="3.2.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion PowerDir/PowerDir.GetPowerDir.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'PowerDir.dll'

# Version number of this module.
ModuleVersion = '0.3.3'
ModuleVersion = '0.3.4'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
6 changes: 2 additions & 4 deletions PowerDir/PowerDir.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>0.3.3</Version>
<Version>0.3.4</Version>
<Copyright>(c) BlueRedSky LTD. All rights reserved.</Copyright>
<Authors>Raffaello Bertini</Authors>
<Company>BlueRedSky LTD</Company>
Expand All @@ -29,9 +29,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" Version="6.0.0" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.6" />
<!-- remove the below when updating powershell sdk pacakge -->
<PackageReference Include="System.Security.Cryptography.Xml" Version="6.0.1" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.7" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 8ad7096

Please sign in to comment.