📄
src/Cli/Cli.csproj
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>Slopper.Cli</RootNamespace>
<AssemblyName>Slopper.Cli</AssemblyName>
<OutputType>Exe</OutputType>
<UserSecretsId>9df5410d-6a82-44ba-9e77-7ec4ffcf582a</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<Content Include="appsettings.json" CopyToOutputDirectory="PreserveNewest" />
<Content
Include="appsettings.Development.json"
CopyToOutputDirectory="PreserveNewest"
Condition="'$(Configuration)' == 'Debug'"
/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Domain\Domain.csproj" />
<ProjectReference Include="..\Infrastructure\Database\Database.csproj" />
<ProjectReference Include="..\Infrastructure\Ffmpeg\Ffmpeg.csproj" />
<ProjectReference Include="..\Infrastructure\Ai\Ai.csproj" />
<ProjectReference Include="..\Infrastructure\YouTube\YouTube.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" />
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" />
<PackageReference Include="OpenTelemetry.Extensions.Hosting" />
<PackageReference Include="OpenTelemetry.Instrumentation.EntityFrameworkCore" />
<PackageReference Include="OpenTelemetry.Instrumentation.Http" />
<PackageReference Include="OpenTelemetry.Instrumentation.Runtime" />
<PackageReference Include="Winton.Extensions.Configuration.Consul" />
</ItemGroup>
</Project>