94 lines
4.6 KiB
XML
Executable File
94 lines
4.6 KiB
XML
Executable File
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<PackageId>MarketAlly.AIPlugin.Refactoring</PackageId>
|
|
<Version>2.1.0</Version>
|
|
<Authors>David H Friedel Jr</Authors>
|
|
<Company>MarketAlly</Company>
|
|
<Product>AIPlugin Refactoring Toolkit</Product>
|
|
<Title>MarketAlly AI Plugin Refactoring Toolkit</Title>
|
|
<Description>
|
|
Specialized refactoring and code quality improvement plugins for the MarketAlly AI Plugin ecosystem. Features include:
|
|
|
|
- CodeAnalysisPlugin: Comprehensive code analysis with complexity metrics and refactoring suggestions
|
|
- EnhancedDocumentationGeneratorPlugin: AI-powered XML documentation generation with multiple styles
|
|
- CodeFormatterPlugin: Advanced code formatting with multiple style conventions
|
|
- NamingConventionPlugin: Intelligent naming analysis and improvement suggestions
|
|
- BatchRefactorPlugin: Orchestrates multiple refactoring operations across projects
|
|
|
|
Supports various formatting styles (Microsoft, Allman, KandR, Google), intelligent naming conventions,
|
|
and comprehensive code quality analysis with actionable refactoring recommendations.
|
|
</Description>
|
|
<Copyright>Copyright © 2025 MarketAlly</Copyright>
|
|
<PackageIcon>icon-refactor.png</PackageIcon>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageProjectUrl>https://github.com/MarketAlly/MarketAlly.AIPlugin</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/MarketAlly/MarketAlly.AIPlugin</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PackageTags>ai plugin refactoring code-analysis documentation formatting naming-conventions code-quality roslyn</PackageTags>
|
|
<PackageReleaseNotes>
|
|
Version 2.1.0:
|
|
- Enhanced code analysis with complexity metrics and code smell detection
|
|
- AI-powered documentation generation with multiple styles (intelligent, comprehensive, basic, minimal)
|
|
- Advanced code formatting with support for Microsoft, Allman, KandR, and Google styles
|
|
- Intelligent naming convention analysis with meaningful name suggestions
|
|
- Batch refactoring orchestration with concurrent processing
|
|
- Comprehensive error handling and detailed logging
|
|
- Support for configuration files and exclusion patterns
|
|
</PackageReleaseNotes>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Tests\**" />
|
|
<EmbeddedResource Remove="Tests\**" />
|
|
<None Remove="Tests\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="IntelligentDescriptionPlugin.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="LibGit2Sharp" Version="0.31.0" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="4.14.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.14.0" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="4.14.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.10" />
|
|
<PackageReference Include="System.Text.Json" Version="9.0.11" />
|
|
|
|
<!-- Test Dependencies -->
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="4.0.1" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="4.0.1" />
|
|
<PackageReference Include="Moq" Version="4.20.72" />
|
|
<PackageReference Include="FluentAssertions" Version="8.7.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="icon-refactor.png">
|
|
<Pack>true</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<Visible>true</Visible>
|
|
</None>
|
|
<None Include="README.md" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MarketAlly.AIPlugin\MarketAlly.AIPlugin.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |