MarketAlly.AIPlugin.Extensions/MarketAlly.AIPlugin.DevOps/MarketAlly.AIPlugin.DevOps....

79 lines
3.4 KiB
XML
Executable File

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>MarketAlly.AIPlugin.DevOps</PackageId>
<Version>2.1.0</Version>
<Authors>David H Friedel Jr</Authors>
<Company>MarketAlly</Company>
<Product>AIPlugin DevOps Toolkit</Product>
<Title>MarketAlly AI Plugin DevOps and Infrastructure Toolkit</Title>
<Description>
DevOps, CI/CD, and infrastructure analysis plugins for the MarketAlly AI Plugin framework. Includes:
- DevOpsScanPlugin: Analyzes CI/CD pipeline configurations and suggests optimizations
- DockerfileAnalyzerPlugin: Reviews and optimizes Dockerfile configurations
- ConfigurationAnalyzerPlugin: Validates configuration files and environment settings
- PipelineOptimizerPlugin: Improves build and deployment pipeline efficiency
- ChangelogGeneratorPlugin: Automatically generates changelogs from git history
Streamlines DevOps workflows and infrastructure management.
</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 devops ci-cd docker infrastructure configuration pipeline changelog automation</PackageTags>
<PackageReleaseNotes>
Initial release:
- DevOpsScanPlugin for CI/CD analysis
- DockerfileAnalyzerPlugin for container optimization
- ConfigurationAnalyzerPlugin for config validation
- PipelineOptimizerPlugin for build optimization
- ChangelogGeneratorPlugin for automated documentation
</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<None Include="icon.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.Extensions.Configuration.Abstractions" Version="9.0.10" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.10" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.10" />
<PackageReference Include="YamlDotNet" Version="16.3.0" />
<PackageReference Include="LibGit2Sharp" Version="0.31.0" />
<PackageReference Include="Docker.DotNet" Version="3.125.15" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
<PackageReference Include="MSTest.TestFramework" Version="4.0.1" />
<PackageReference Include="MSTest.TestAdapter" Version="4.0.1" />
<PackageReference Include="Moq" Version="4.20.72" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MarketAlly.AIPlugin\MarketAlly.AIPlugin.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="Tests\TestData\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>