Skip to content

Commit 7237175

Browse files
committed
feat: Finalize project for v1.0.0 release
- Added NuGet package metadata (icon, readme) - Enhanced package tags for better discoverability - Removed unnecessary documentation files - Project ready for NuGet publication
1 parent 6fbdd08 commit 7237175

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/CodeContext.CLI/CodeContext.CLI.csproj

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@
1818
<Description>AI Context Generator for C# Codebases - Analyzes code patterns and generates context for AI tools</Description>
1919
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2020
<RepositoryUrl>https://github.com/Nonanti/CodeContext.NET</RepositoryUrl>
21-
<PackageTags>csharp;ai;code-analysis;roslyn;context-generation</PackageTags>
21+
<RepositoryType>git</RepositoryType>
22+
<PackageTags>csharp;ai;code-analysis;roslyn;context-generation;chatgpt;copilot;pattern-detection</PackageTags>
23+
<PackageProjectUrl>https://github.com/Nonanti/CodeContext.NET</PackageProjectUrl>
24+
<PackageReadmeFile>README.md</PackageReadmeFile>
25+
<PackageIcon>logo.png</PackageIcon>
2226
</PropertyGroup>
2327

2428
<ItemGroup>
@@ -29,4 +33,9 @@
2933
<ProjectReference Include="..\CodeContext.Core\CodeContext.Core.csproj" />
3034
</ItemGroup>
3135

36+
<ItemGroup>
37+
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
38+
<None Include="..\..\assets\logo.png" Pack="true" PackagePath="\" />
39+
</ItemGroup>
40+
3241
</Project>

0 commit comments

Comments
 (0)