Skip to content

Commit 6697426

Browse files
author
Thomas Hambach
committed
Readme?
1 parent b4d8794 commit 6697426

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/nuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- main
66
jobs:
77
build:
8-
name: SonarScanner
8+
name: Publish on Nuget
99
runs-on: windows-latest
1010
steps:
1111
- uses: actions/checkout@v2

CSharpDiff/CSharpDiff.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,18 @@
44
<TargetFramework>net6.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<PackageId>CSharpDiff</PackageId>
7-
<Version>0.0.2</Version>
7+
<Version>0.0.3</Version>
88
<Authors>ThomasHambach</Authors>
99
<Description>
1010
Unified Diff support for .NET. Based on the popular library JSDIFF.
1111
</Description>
1212
<PackageTags>Diff;UniDiff;Line Diff;Unified Diff</PackageTags>
1313
<PackageLicenseExpression>MIT</PackageLicenseExpression>
14+
<PackageReadmeFile>..\README.md</PackageReadmeFile>
1415

1516
</PropertyGroup>
17+
<ItemGroup>
18+
<None Include="..\README.md" Pack="true" PackagePath="\"/>
19+
</ItemGroup>
1620

1721
</Project>

0 commit comments

Comments
 (0)