Skip to content

Commit 5ea0905

Browse files
authored
Improve NuGet package discoverability with richer tags and README metadata (FritzAndFriends#561)
1 parent b8a06bd commit 5ea0905

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

samples/AfterContosoUniversity/migration-artifacts/codebehind/Site.razor.cs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ namespace ContosoUniversity
4747
[Parameter]
4848
public RenderFragment? ChildContent { get; set; }
4949

50-
[Parameter]
50+
[Parameter]
5151
public RenderFragment? ChildComponents { get; set; }
5252
}
5353
}

samples/AfterZavaLoanPortal/migration-artifacts/codebehind/Site.razor.cs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ namespace ZavaLoanPortal
6161

6262
private object? _lblUserStatus_Text; // TODO: migrate from Web Forms code-behind
6363

64-
[Parameter]
64+
[Parameter]
6565
public RenderFragment? ChildComponents { get; set; }
6666
}
6767
}

src/BlazorWebFormsComponents/BlazorWebFormsComponents.csproj

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
<Copyright>Copyright Jeffrey T. Fritz 2019-2026</Copyright>
1414
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1515
<PackageProjectUrl>https://github.com/FritzAndFriends/BlazorWebFormsComponents</PackageProjectUrl>
16-
<PackageTags>blazor</PackageTags>
16+
<PackageTags>blazor;asp.net;webforms;components</PackageTags>
17+
<PackageReadmeFile>README.md</PackageReadmeFile>
1718
<PackageIcon>logo128.png</PackageIcon>
1819
<RepositoryUrl>https://github.com/FritzAndFriends/BlazorWebFormsComponents</RepositoryUrl>
1920
<RepositoryType>GitHub</RepositoryType>
@@ -34,6 +35,10 @@
3435
</ItemGroup>
3536

3637
<ItemGroup>
38+
<None Include="..\..\README.md">
39+
<Pack>True</Pack>
40+
<PackagePath></PackagePath>
41+
</None>
3742
<None Include="..\..\docs\assets\logo128.png">
3843
<Pack>True</Pack>
3944
<PackagePath></PackagePath>

0 commit comments

Comments
 (0)