MarketAlly.AIPlugin.Extensions/MarketAlly.AIPlugin.Analysis/MarketAlly.AIPlugin.Analysi...

114 lines
5.4 KiB
XML
Executable File

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsNotAsErrors>CS1591</WarningsNotAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
</PropertyGroup>
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<SignAssembly>false</SignAssembly>
<DelaySign>false</DelaySign>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>MarketAlly.AIPlugin.Analysis</PackageId>
<Version>2.1.0</Version>
<Authors>David H Friedel Jr</Authors>
<Company>MarketAlly</Company>
<Product>AIPlugin Analysis Toolkit</Product>
<Title>MarketAlly AI Plugin Advanced Analysis Toolkit</Title>
<Description>
Advanced code analysis, metrics, and quality assessment plugins for the MarketAlly AI Plugin framework. Includes:
- PerformanceAnalyzerPlugin: Identifies performance bottlenecks and optimization opportunities
- ArchitectureValidatorPlugin: Validates architectural patterns and layer boundaries
- BehaviorAnalysisPlugin: Analyzes code behavior against specifications
- TechnicalDebtPlugin: Quantifies and tracks technical debt
- TestAnalysisPlugin: Analyzes test coverage and quality
- ComplexityAnalyzerPlugin: Measures cyclomatic and cognitive complexity
Provides deep insights into code quality, architecture, and maintainability.
</Description>
<Copyright>Copyright © 2025 MarketAlly</Copyright>
<PackageIcon>icon.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 analysis performance architecture technical-debt testing complexity metrics quality</PackageTags>
<PackageReleaseNotes>
Initial release:
- PerformanceAnalyzerPlugin for bottleneck detection
- ArchitectureValidatorPlugin for pattern validation
- BehaviorAnalysisPlugin for specification alignment
- TechnicalDebtPlugin for debt quantification
- TestAnalysisPlugin for coverage analysis
- ComplexityAnalyzerPlugin for complexity metrics
</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Tests\**" />
<EmbeddedResource Remove="Tests\**" />
<None Remove="Tests\**" />
</ItemGroup>
<ItemGroup>
<None Include="icon-analysis.png">
<Pack>true</Pack>
<PackagePath>\</PackagePath>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>true</Visible>
</None>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="[4.14.0,5.0.0)" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="[4.14.0,5.0.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.Extensions.Caching.Memory" Version="9.0.10" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.10" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.10" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.10" />
<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="coverlet.collector" Version="[6.0.4,7.0.0)">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="4.14.0" />
<PackageReference Include="Microsoft.Data.Sqlite" 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="Microsoft.SourceLink.GitHub" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Runtime.Caching" Version="9.0.10" />
<PackageReference Include="System.Text.Json" Version="9.0.11" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MarketAlly.AIPlugin\MarketAlly.AIPlugin.csproj" />
</ItemGroup>
</Project>