Skip to content

Commit 25439af

Browse files
authored
- Fix missing logger dependency (#30)
1 parent cb2ddf2 commit 25439af

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## Next Release
4+
5+
- Fix missing NuGet dependency for custom logger
6+
37
## v0.5.0 (2022-10-04)
48

59
- New feature: Set expiration time for interactions (how long since it was recorded should an interaction be considered valid)

EasyVCR/EasyVCR.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,13 @@
5151
</PropertyGroup>
5252

5353
<ItemGroup>
54-
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0"/>
54+
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
55+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.2" />
5556
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
5657
</ItemGroup>
5758

5859
<ItemGroup>
59-
<None Include="..\README.md" Pack="true" PackagePath="\"/>
60+
<None Include="..\README.md" Pack="true" PackagePath="\" />
6061
</ItemGroup>
6162

6263
</Project>

0 commit comments

Comments
 (0)