Skip to content

Commit

Permalink
[fix] Include .NET 8.0-compatible DLLs in NuGet package (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwithan8 authored Jun 7, 2024
1 parent f7706b8 commit 86e2fd8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## v0.11.0 (2024-06-06)

- Add missing .NET 8.0 DLLs to the NuGet package

## v0.10.0 (2024-02-09)

- Add .NET 8.0 support
Expand Down
8 changes: 7 additions & 1 deletion EasyVCR.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>EasyVCR</id>
<title>EasyVCR</title>
<version>0.10.0</version>
<version>0.11.0</version>
<authors>EasyPost</authors>
<owners>EasyPost</owners>
<projectUrl>https://github.com/EasyPost/easyvcr-csharp</projectUrl>
Expand Down Expand Up @@ -34,6 +34,10 @@
<dependency id="Newtonsoft.Json" version="13.0.1" />
<dependency id="Microsoft.Extensions.Logging" version="6.0.0" />
</group>
<group targetFramework="net8.0">
<dependency id="Newtonsoft.Json" version="13.0.1" />
<dependency id="Microsoft.Extensions.Logging" version="6.0.0" />
</group>
</dependencies>
</metadata>
<files>
Expand All @@ -47,6 +51,8 @@
<file src="lib\net6.0\EasyVCR.XML" target="lib\net6.0" />
<file src="lib\net7.0\EasyVCR.dll" target="lib\net7.0" />
<file src="lib\net7.0\EasyVCR.XML" target="lib\net7.0" />
<file src="lib\net8.0\EasyVCR.dll" target="lib\net8.0" />
<file src="lib\net8.0\EasyVCR.XML" target="lib\net8.0" />
<file src="README.md" target="docs\" />
<file src="icon.png" target="images\" />
</files>
Expand Down
6 changes: 3 additions & 3 deletions EasyVCR/Properties/VersionInfo.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Reflection;

// Version information for an assembly must follow semantic versioning
[assembly: AssemblyVersion("0.10.0")]
[assembly: AssemblyFileVersion("0.10.0")]
[assembly: AssemblyInformationalVersion("0.10.0")]
[assembly: AssemblyVersion("0.11.0")]
[assembly: AssemblyFileVersion("0.11.0")]
[assembly: AssemblyInformationalVersion("0.11.0")]

0 comments on commit 86e2fd8

Please sign in to comment.