Skip to content

Commit 0a612d3

Browse files
committed
Update NuGet packages and project file configurations
Updated `CommandBridge.UnitTests.csproj` to use newer versions of `coverlet.collector` (6.0.4), `Microsoft.NET.Test.Sdk` (17.13.0), `MSTest.TestAdapter` and `MSTest.TestFramework` (3.8.2). Added warning suppression for `S4144`. Removed `<PackageIcon>` and `<None>` elements for `icon.png` from `CommandBridge.csproj`. Retained `<None>` element for `../../README.md`. Kept warning suppression for `SYSLIB1045` but did not add `S4144` suppression.
1 parent b0a32ff commit 0a612d3

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

src/CommandBridge.UnitTests/CommandBridge.UnitTests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="coverlet.collector" Version="6.0.2">
19+
<PackageReference Include="coverlet.collector" Version="6.0.4">
2020
<PrivateAssets>all</PrivateAssets>
2121
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2222
</PackageReference>
23-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
24-
<PackageReference Include="MSTest.TestAdapter" Version="3.4.3" />
25-
<PackageReference Include="MSTest.TestFramework" Version="3.4.3" />
23+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
24+
<PackageReference Include="MSTest.TestAdapter" Version="3.8.2" />
25+
<PackageReference Include="MSTest.TestFramework" Version="3.8.2" />
2626
</ItemGroup>
2727

2828
<ItemGroup>

src/CommandBridge/CommandBridge.csproj

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<PackageId>CommandBridge</PackageId>
1414
<Title>CommandBridge</Title>
1515
<PackageProjectUrl>https://github.com/g4-api/command-bridge</PackageProjectUrl>
16-
<PackageIcon>content\icon.png</PackageIcon>
1716
<PackageReadmeFile>README.md</PackageReadmeFile>
1817
<Authors>G4 API Community</Authors>
1918
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
@@ -30,9 +29,7 @@
3029
<NoWarn>$(NoWarn);SYSLIB1045</NoWarn>
3130
</PropertyGroup>
3231

33-
<ItemGroup>
34-
<None Include="../../images/icon.png" Pack="true" PackagePath="content\icon.png" />
35-
<None Include="../../README.md" Pack="true" PackagePath="\" />
32+
<ItemGroup> <None Include="../../README.md" Pack="true" PackagePath="\" />
3633
</ItemGroup>
3734

3835
</Project>

0 commit comments

Comments
 (0)