Skip to content

Commit

Permalink
Merge pull request #29 from MangelMaxime/fix/bundle_dependencies
Browse files Browse the repository at this point in the history
fix: bundle dependencies into the package for net6.0
  • Loading branch information
baronfel authored Sep 10, 2024
2 parents 7ad0461 + db79e06 commit 3872775
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/buildAndTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
- name: Pack
run: dotnet pack --no-restore
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v4
with:
path: src/**/bin/Debug/*.nupkg
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Unreleased

### Fixed

* Fix bundled dependencies into the package for net6.0

## [0.2.0] - 2023.12.05

### Changed
Expand Down
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>
<TargetFrameworks>net472;net6.0</TargetFrameworks>
Expand All @@ -13,6 +13,7 @@

<!-- deps.json generation -->
<GenerateDependencyFile>true</GenerateDependencyFile>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 3872775

Please sign in to comment.