Skip to content

Commit 1c26a8c

Browse files
authored
Adding a README to the nuget package (#76)
* Adding a README to the nuget package * readme path * fixing readme path
1 parent 6a1503b commit 1c26a8c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/integration.yml

+2
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,5 @@ jobs:
4343
token: ${{secrets.CODECOV_TOKEN}}
4444
verbose: true
4545

46+
- name: Build
47+
run: dotnet pack -c Release --output .

src/NRedisStack/NRedisStack.csproj

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@
77
<Authors>Redis Open Source</Authors>
88
<Owners>Redis OSS</Owners>
99
<Description>.Net Client for Redis Stack</Description>
10+
<PackageReadmeFile>README.md</PackageReadmeFile>
1011
<Version>0.5.0</Version>
1112
<ReleaseVersion>0.5.0</ReleaseVersion>
1213
<PackageVersion>0.5.0</PackageVersion>
1314
</PropertyGroup>
1415

1516
<ItemGroup>
16-
<PackageReference Include="StackExchange.Redis" Version="2.6.45" />
17+
<PackageReference Include="StackExchange.Redis" Version="2.6.45" />
18+
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
1719
</ItemGroup>
1820

1921
</Project>

0 commit comments

Comments
 (0)