Skip to content

Commit 3fa2806

Browse files
author
Taha Zahit Hakyemez
committed
Fix dotnet pack path in CI/CD and bump version to 2.0.5
1 parent d3cb5e9 commit 3fa2806

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Build
2323
run: dotnet build --no-restore BiMap.sln --configuration Release
2424
- name: Pack
25-
run: dotnet pack BiMap.csproj --configuration Release --output nuget-packages
25+
run: dotnet pack BiMap/BiMap.csproj --configuration Release --output nuget-packages
2626
- name: Upload NuGet Package
2727
uses: actions/upload-artifact@v4
2828
with:

BiMap/BiMap.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<TargetFramework>netstandard2.0</TargetFramework>
66
<Authors>Taha Zahit Hakyemez</Authors>
77
<Description>Thread-safe, high-performance generic bidirectional map for .NET (BiMap). Supports O(1) lookups in both directions.</Description>
8-
<PackageReleaseNotes>Fix deployment workflow: Upgrade to artifacts v4 actions to resolve deprecation failure.</PackageReleaseNotes>
8+
<PackageReleaseNotes>Fix dotnet pack path in CI/CD workflow.</PackageReleaseNotes>
99
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
10-
<Version>2.0.4</Version>
10+
<Version>2.0.5</Version>
1111
<RepositoryUrl>https://github.com/TahaZahit/BiMap</RepositoryUrl>
1212
<RepositoryType>git</RepositoryType>
1313
<PackageProjectUrl>https://github.com/TahaZahit/BiMap</PackageProjectUrl>

0 commit comments

Comments
 (0)