Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
Expand All @@ -19,7 +19,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="MessagePack" Version="2.5.171" />
<PackageReference Include="MessagePack" Version="2.5.187" />
<PackageReference Include="MessagePackAnalyzer" Version="2.5.171">
Copy link

Copilot AI Nov 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The MessagePackAnalyzer version (2.5.171) should be updated to match the MessagePack version (2.5.187) to ensure compatibility and consistent analysis behavior. Version mismatches between the runtime library and analyzer can lead to incorrect warnings or missed issues.

Suggested change
<PackageReference Include="MessagePackAnalyzer" Version="2.5.171">
<PackageReference Include="MessagePackAnalyzer" Version="2.5.187">

Copilot uses AI. Check for mistakes.
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="MessagePack" Version="1.9.11" />
<PackageReference Include="MessagePack" Version="2.5.187" />
<PackageReference Include="MessagePackAnalyzer" Version="1.6.0" />
Copy link

Copilot AI Nov 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

MessagePackAnalyzer version 1.6.0 is significantly outdated compared to MessagePack 2.5.187. This represents a major version mismatch (1.x analyzer with 2.x library) that will likely cause the analyzer to produce incorrect results or fail to recognize MessagePack 2.x features and API changes. Update MessagePackAnalyzer to 2.5.187.

Suggested change
<PackageReference Include="MessagePackAnalyzer" Version="1.6.0" />
<PackageReference Include="MessagePackAnalyzer" Version="2.5.187" />

Copilot uses AI. Check for mistakes.
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="Moq" Version="4.9.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="MessagePack" Version="1.7.3.4" />
<PackageReference Include="MessagePack" Version="2.5.187" />
<PackageReference Include="MessagePackAnalyzer" Version="1.6.0" />
Copy link

Copilot AI Nov 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

MessagePackAnalyzer version 1.6.0 is significantly outdated compared to MessagePack 2.5.187. This represents a major version mismatch (1.x analyzer with 2.x library) that will likely cause the analyzer to produce incorrect results or fail to recognize MessagePack 2.x features and API changes. Update MessagePackAnalyzer to 2.5.187.

Suggested change
<PackageReference Include="MessagePackAnalyzer" Version="1.6.0" />
<PackageReference Include="MessagePackAnalyzer" Version="2.5.187" />

Copilot uses AI. Check for mistakes.
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="6.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="MessagePack" Version="1.7.3.4" />
<PackageReference Include="MessagePack" Version="2.5.187" />
<PackageReference Include="MessagePackAnalyzer" Version="1.6.0" />
Copy link

Copilot AI Nov 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

MessagePackAnalyzer version 1.6.0 is significantly outdated compared to MessagePack 2.5.187. This represents a major version mismatch (1.x analyzer with 2.x library) that will likely cause the analyzer to produce incorrect results or fail to recognize MessagePack 2.x features and API changes. Update MessagePackAnalyzer to 2.5.187.

Suggested change
<PackageReference Include="MessagePackAnalyzer" Version="1.6.0" />
<PackageReference Include="MessagePackAnalyzer" Version="2.5.187" />

Copilot uses AI. Check for mistakes.
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="MessagePack" Version="2.5.171" />
<PackageReference Include="MessagePack" Version="2.5.187" />
<PackageReference Include="MessagePackAnalyzer" Version="2.5.171">
Copy link

Copilot AI Nov 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The MessagePackAnalyzer version (2.5.171) should be updated to match the MessagePack version (2.5.187) to ensure compatibility and consistent analysis behavior. Version mismatches between the runtime library and analyzer can lead to incorrect warnings or missed issues.

Suggested change
<PackageReference Include="MessagePackAnalyzer" Version="2.5.171">
<PackageReference Include="MessagePackAnalyzer" Version="2.5.187">

Copilot uses AI. Check for mistakes.
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion src/Senparc.CO2NET.Tests/Senparc.CO2NET.Tests.net6.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="6.0.2" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
Expand Down
4 changes: 2 additions & 2 deletions src/Senparc.CO2NET.Tests/Senparc.CO2NET.Tests.net8.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="Moq" Version="4.20.69" />
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
Expand Down