Skip to content

Commit 2bf8686

Browse files
authored
Merge pull request #1303 from fullstackhero/chore/nuget-publish-readiness
chore(nuget): publish-readiness fixes for CLI + template packages
2 parents 62b0c51 + d7df79f commit 2bf8686

4 files changed

Lines changed: 7 additions & 10 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -503,6 +503,8 @@ spec-os/
503503
/.claude/worktrees/
504504
/.claude/scheduled_tasks.lock
505505
/.claude/last30days.env
506+
# Local AI-tool state should never be tracked, at any depth.
507+
**/.claude/settings.local.json
506508
tmpclaude**
507509

508510
# Auto Claude data directory

src/.claude/settings.local.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

src/Host/FSH.Starter.AppHost/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"commandName": "Project",
66
"dotnetRunMessages": true,
77
"launchBrowser": true,
8-
"applicationUrl": "https://localhost:17273;http://localhost:15036",
8+
"applicationUrl": "https://localhost:15888;http://localhost:15036",
99
"environmentVariables": {
1010
"ASPNETCORE_ENVIRONMENT": "Development",
1111
"DOTNET_ENVIRONMENT": "Development",

templates/FullStackHero.NET.StarterKit.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
<RepositoryType>git</RepositoryType>
2929
<PackageLicenseExpression>MIT</PackageLicenseExpression>
3030
<PackageIcon>icon.png</PackageIcon>
31+
<!-- Render the project README on the nuget.org gallery page (same README the CLI ships). -->
32+
<PackageReadmeFile>README.md</PackageReadmeFile>
3133

3234
<TargetFramework>net10.0</TargetFramework>
3335
<IncludeContentInPack>true</IncludeContentInPack>
@@ -46,6 +48,8 @@
4648
<Compile Remove="**\*" />
4749
<!-- Gallery icon at package root (separate from the .template.config content copy). -->
4850
<None Include="..\.template.config\icon.png" Pack="true" PackagePath="\" Visible="false" />
51+
<!-- Gallery README at package root (separate from the content/README.md scaffold copy). -->
52+
<None Include="..\README.md" Pack="true" PackagePath="\" Visible="false" />
4953
</ItemGroup>
5054

5155
<!--

0 commit comments

Comments
 (0)