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
Expand Up @@ -27,9 +27,9 @@
<ProjectReference Include="..\..\src\Senparc.CO2NET.WebApi\Senparc.CO2NET.WebApi.csproj" />
<ProjectReference Include="..\..\src\Senparc.CO2NET\Senparc.CO2NET.csproj" />

<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.4.0" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="6.4.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="10.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="10.0.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
<ProjectReference Include="..\..\src\Senparc.CO2NET.WebApi\Senparc.CO2NET.WebApi.csproj" />
<ProjectReference Include="..\..\src\Senparc.CO2NET\Senparc.CO2NET.csproj" />

<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.4.0" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="6.4.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="10.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="10.0.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
<ProjectReference Include="..\..\src\Senparc.CO2NET.WebApi\Senparc.CO2NET.WebApi.csproj" />
<ProjectReference Include="..\..\src\Senparc.CO2NET\Senparc.CO2NET.csproj" />

<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.5.0" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="6.5.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="10.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="10.0.0" />
</ItemGroup>

</Project>
10 changes: 7 additions & 3 deletions src/Senparc.CO2NET.WebApi/Senparc.CO2NET.WebApi.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net8.0</TargetFrameworks>
<Version>2.1.4</Version>
<Version>2.1.6-preview.1</Version>
<LangVersion>latest</LangVersion>
<AssemblyName>Senparc.CO2NET.WebApi</AssemblyName>
<RootNamespace>Senparc.CO2NET.WebApi</RootNamespace>
Expand Down Expand Up @@ -51,6 +51,7 @@
[2025-08-20] v2.1.2 feat: Add default value GET to DefaultRequestMethod proprety
[2025-08-20] v2.1.2.1 Update async detection logic in DocMethodInfo and increment project version
[2025-09-06] v2.1.3 base module update
Copy link

Copilot AI Nov 21, 2025

Choose a reason for hiding this comment

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

The release notes skip from v2.1.3 (line 53) to v2.1.5 (line 54), but the version number was changed from 2.1.4 to 2.1.5, indicating that v2.1.4 existed. Consider adding a release note entry for v2.1.4 to maintain a complete version history, or clarify why it was skipped.

Suggested change
[2025-09-06] v2.1.3 base module update
[2025-09-06] v2.1.3 base module update
[SKIPPED] v2.1.4 (version skipped/not released)

Copilot uses AI. Check for mistakes.
[2025-11-21] v2.1.5 feat: update Swashbuckle.AspNetCore.Annotations to v10.0.0 for .NET 8.0 (netstandard2.1 remains on v6.5.0 for compatibility)
</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
Expand All @@ -69,10 +70,13 @@
<ItemGroup>
<None Include="..\Senparc.CO2NET\icon.jpg" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
<ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="10.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.5.0" />
<!--<PackageReference Include="System.Reflection.Emit" Version="4.7.0" />-->
</ItemGroup>
<!--<PackageReference Include="System.Reflection.Emit" Version="4.7.0" />-->
<ItemGroup Condition="'$(TargetFramework)' != 'netstandard2.1'">
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="8.0.0" />
Expand Down