487fdcc77b
feat: add PuppetConfig and integrate with CLI Introduced a new PuppetConfig class in the Puppeteer namespace to manage Puppeteer configurations. Updated the CLI project to reference the Puppeteer project and added a new method in DownloadBuilder for using a Puppet manipulator. This change enables better configuration management for Puppeteer within the CLI. ```
33 lines
1.5 KiB
XML
33 lines
1.5 KiB
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="aeqw89.DataKeys" Version="1.0.1" />
|
|
<PackageReference Include="aeqw89.PersistentData" Version="1.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.1" />
|
|
<PackageReference Include="OpenAI" Version="2.1.0" />
|
|
<PackageReference Include="Spectre.Console" Version="0.49.2-preview.0.70" />
|
|
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Beam.Dynamic\Beam.Dynamic.csproj">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\Beam.Exports\Beam.Exports.csproj">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\Beam.Puppeteer\Beam.Puppeteer.csproj">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\Beam\Beam.csproj">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
</Project> |