58 lines
2.6 KiB
XML
Executable File
58 lines
2.6 KiB
XML
Executable File
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
<!-- Package Metadata -->
|
|
<PackageId>MarketAlly.AIPlugin.ClaudeCode</PackageId>
|
|
<Version>1.0.0</Version>
|
|
<Title>MarketAlly Claude Code Integration</Title>
|
|
<Authors>MarketAlly</Authors>
|
|
<Description>
|
|
Claude Code integration package for .NET applications with rate limit awareness,
|
|
intelligent learning capabilities, and comprehensive AI assistant features.
|
|
Provides ready-to-use services and controllers for integrating Claude Code
|
|
functionality into ASP.NET Core applications.
|
|
</Description>
|
|
<PackageTags>AI;Claude;CodeAssistant;RateLimit;Learning;ChatBot;ASP.NET</PackageTags>
|
|
<PackageProjectUrl>https://github.com/MarketAlly/AIPlugin</PackageProjectUrl>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
|
<PackageReleaseNotes>
|
|
v1.0.0:
|
|
- Initial release with Claude Code integration
|
|
- Multi-tier rate limiting support (Free, Basic, Professional, Enterprise, Aizia Staff/Admin)
|
|
- Automatic retry with exponential backoff
|
|
- Learning-enhanced context management
|
|
- Cross-platform compatibility
|
|
- Comprehensive error handling and user feedback
|
|
</PackageReleaseNotes>
|
|
|
|
<!-- Build Settings -->
|
|
<LangVersion>latest</LangVersion>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<WarningsAsErrors />
|
|
<WarningsNotAsErrors>CS1591</WarningsNotAsErrors>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.8" />
|
|
<PackageReference Include="System.Text.Json" Version="9.0.11" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<None Include="README.md" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
</Project> |