Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,8 @@ spec-os/
/.claude/worktrees/
/.claude/scheduled_tasks.lock
/.claude/last30days.env
# Local AI-tool state should never be tracked, at any depth.
**/.claude/settings.local.json
tmpclaude**

# Auto Claude data directory
Expand Down
9 changes: 0 additions & 9 deletions src/.claude/settings.local.json

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "https://localhost:17273;http://localhost:15036",
"applicationUrl": "https://localhost:15888;http://localhost:15036",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DOTNET_ENVIRONMENT": "Development",
Expand Down
4 changes: 4 additions & 0 deletions templates/FullStackHero.NET.StarterKit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<!-- Render the project README on the nuget.org gallery page (same README the CLI ships). -->
<PackageReadmeFile>README.md</PackageReadmeFile>

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

<!--
Expand Down
Loading