Files
stream-shorts/src/StreamShorts.Console/StreamShorts.Console.csproj
T

38 lines
1.4 KiB
XML
Raw Normal View History

2025-08-20 19:41:59 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2025-07-16 12:43:09 -05:00
<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>
2025-10-09 21:14:51 +00:00
<Version>0.3.0</Version>
2025-08-19 16:25:15 -05:00
<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-08-20 15:59:13 -05:00
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles>
2025-07-16 12:43:09 -05:00
</PropertyGroup>
<ItemGroup>
<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" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\StreamShorts.Library\StreamShorts.Library.csproj" />
</ItemGroup>
2025-07-16 12:43:09 -05:00
</Project>