2025-07-16 12:43:09 -05:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2025-08-19 16:25:15 -05:00
|
|
|
<AssemblyTitle>StreamShorts.Console</AssemblyTitle>
|
|
|
|
|
<Product>StreamShorts.Console</Product>
|
|
|
|
|
<Description>A command-line interface for StreamShorts</Description>
|
|
|
|
|
<Version>0.0.0</Version>
|
|
|
|
|
<Authors>Stevan Freeborn</Authors>
|
2025-07-16 12:43:09 -05:00
|
|
|
<OutputType>Exe</OutputType>
|
2025-08-19 16:25:15 -05:00
|
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
|
|
|
<SelfContained>true</SelfContained>
|
2025-07-16 12:43:09 -05:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2025-07-21 01:01:09 -05:00
|
|
|
<ItemGroup>
|
2025-07-23 02:16:48 -05:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" />
|
2025-07-23 23:55:56 -05:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" />
|
|
|
|
|
<PackageReference Include="Serilog" />
|
|
|
|
|
<PackageReference Include="Serilog.Extensions.Hosting" />
|
|
|
|
|
<PackageReference Include="Serilog.Formatting.Compact" />
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.File" />
|
|
|
|
|
<PackageReference Include="Spectre.Console" />
|
|
|
|
|
<PackageReference Include="Spectre.Console.Cli" />
|
|
|
|
|
<PackageReference Include="TestableIO.System.IO.Abstractions.Wrappers" />
|
2025-07-21 01:01:09 -05:00
|
|
|
<PackageReference Include="Whisper.net.AllRuntimes" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-07-23 02:16:48 -05:00
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="appsettings.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
2025-07-24 11:22:15 -05:00
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\StreamShorts.Library\StreamShorts.Library.csproj" />
|
|
|
|
|
</ItemGroup>
|
2025-07-16 12:43:09 -05:00
|
|
|
</Project>
|