2025-07-16 12:43:09 -05:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2025-07-21 01:01:09 -05:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="FFMpegCore" />
|
2025-07-23 02:16:48 -05:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" />
|
2025-07-21 01:01:09 -05:00
|
|
|
<PackageReference Include="NAudio" />
|
|
|
|
|
<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-16 12:43:09 -05:00
|
|
|
</Project>
|