Skip to content

Commit

Permalink
Fix dependencies in nuget (#825)
Browse files Browse the repository at this point in the history
  • Loading branch information
badrishc authored Nov 24, 2024
1 parent 112a56e commit 2557a18
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</ItemGroup>

<ItemGroup>
<Content Include="../../website/static/img/garnet-logo-diamond.png" Pack="true" Visible="false" PackagePath="/" />
<Content Include="../../website/static/img/logo_128.png" Pack="true" Visible="false" PackagePath="/" />
</ItemGroup>

<!-- Common properties for nuget packages -->
Expand All @@ -49,7 +49,7 @@
scalability, storage, recovery, cluster sharding, key migration, and replication features. Garnet uses the Redis RESP wire
protocol and can work with existing Redis clients.
</Description>
<PackageIcon>garnet-logo-diamond.png</PackageIcon>
<PackageIcon>logo_128.png</PackageIcon>
<PackageReleaseNotes>See https://github.com/microsoft/garnet for details.</PackageReleaseNotes>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<language>en-US</language>
Expand Down
2 changes: 1 addition & 1 deletion Version.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<!-- Versioning property for builds and packages -->
<PropertyGroup>
<VersionPrefix>1.0.43</VersionPrefix>
<VersionPrefix>1.0.44</VersionPrefix>
</PropertyGroup>
</Project>
9 changes: 7 additions & 2 deletions libs/host/Garnet.host.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,16 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CommandLineParser" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" />
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
<PackageReference Include="CommandLineParser" />
<PackageReference Include="Microsoft.Extensions.Logging" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" />
<PackageReference Include="System.Text.Json" />
<PackageReference Include="Microsoft.IdentityModel.Validators" />
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" />
<PackageReference Include="Azure.Storage.Blobs" />
<PackageReference Include="NLua" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 2557a18

Please sign in to comment.