Skip to content

Commit

Permalink
Fix casing for PackageReference
Browse files Browse the repository at this point in the history
This uses the *exact* names including casing.
Apparently C# build tooling partly cares about casing.
  • Loading branch information
jnyrup authored and alastairtree committed Sep 19, 2020
1 parent 2ed8728 commit 66e66cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LazyCache/LazyCache.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@

<ItemGroup>
<None Include="..\artwork\logo-128.png" Pack="true" PackagePath=""/>
<PackageReference Include="microsoft.extensions.caching.abstractions" Version="2.1.0" />
<PackageReference Include="microsoft.extensions.caching.memory" Version="2.1.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="2.1.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="2.1.0" />
</ItemGroup>

</Project>

0 comments on commit 66e66cd

Please sign in to comment.