2020-12-17 18:55:58 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-05-17 01:48:50 +08:00
|
|
|
|
2020-01-05 23:47:38 +08:00
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
2022-04-02 18:49:23 +08:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2020-01-05 23:47:38 +08:00
|
|
|
<StartupObject>BililiveRecorder.Cli.Program</StartupObject>
|
2022-08-31 11:33:40 +08:00
|
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
2021-05-30 19:16:20 +08:00
|
|
|
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
|
2022-05-17 02:51:47 +08:00
|
|
|
<RuntimeIdentifiers>win-x64;osx-x64;osx.10.11-x64;linux-arm64;linux-arm;linux-x64</RuntimeIdentifiers>
|
|
|
|
<RuntimeIdentifier Condition=" '$(RuntimeIdentifier)' == 'any' "></RuntimeIdentifier>
|
2022-08-31 11:33:40 +08:00
|
|
|
<UseAppHost Condition=" '$(RuntimeIdentifier)' == '' and '$(Configuration)' != 'Debug' ">false</UseAppHost>
|
2022-05-26 23:11:37 +08:00
|
|
|
<PublishDir Condition=" '$(RuntimeIdentifier)' == '' ">publish\any\$(Configuration)</PublishDir>
|
|
|
|
<PublishDir Condition=" '$(RuntimeIdentifier)' != '' ">publish\$(RuntimeIdentifier)\$(Configuration)</PublishDir>
|
2022-05-17 02:51:47 +08:00
|
|
|
<SelfContained Condition=" '$(RuntimeIdentifier)' == '' ">false</SelfContained>
|
|
|
|
<SelfContained Condition=" '$(SelfContained)' == '' ">true</SelfContained>
|
2020-12-21 04:09:23 +08:00
|
|
|
</PropertyGroup>
|
2022-05-17 01:48:50 +08:00
|
|
|
|
2020-06-21 19:36:43 +08:00
|
|
|
<ItemGroup>
|
2021-01-04 16:24:36 +08:00
|
|
|
<Compile Remove="publish\**" />
|
|
|
|
<EmbeddedResource Remove="publish\**" />
|
|
|
|
<None Remove="publish\**" />
|
|
|
|
</ItemGroup>
|
2022-05-17 01:48:50 +08:00
|
|
|
|
2020-01-05 23:47:38 +08:00
|
|
|
<ItemGroup>
|
2022-04-02 18:49:23 +08:00
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
|
2022-11-06 12:24:00 +08:00
|
|
|
<PackageReference Include="Serilog" Version="2.12.0" />
|
2022-08-26 16:11:32 +08:00
|
|
|
<PackageReference Include="Serilog.AspNetCore" Version="6.0.1" />
|
2021-09-05 16:22:47 +08:00
|
|
|
<PackageReference Include="Serilog.Enrichers.Process" Version="2.0.2" />
|
2021-02-23 18:03:37 +08:00
|
|
|
<PackageReference Include="Serilog.Enrichers.Thread" Version="3.1.0" />
|
2022-08-26 16:11:32 +08:00
|
|
|
<PackageReference Include="Serilog.Exceptions" Version="8.4.0" />
|
2022-11-06 12:24:00 +08:00
|
|
|
<PackageReference Include="Serilog.Expressions" Version="3.4.1" />
|
2021-02-23 18:03:37 +08:00
|
|
|
<PackageReference Include="Serilog.Formatting.Compact" Version="1.1.0" />
|
2022-08-31 14:46:35 +08:00
|
|
|
<PackageReference Include="Serilog.Sinks.Async" Version="1.5.0" />
|
2022-11-06 12:24:00 +08:00
|
|
|
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
2021-06-26 21:31:43 +08:00
|
|
|
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
|
2022-06-07 22:41:09 +08:00
|
|
|
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
|
|
|
|
<PackageReference Include="System.CommandLine.NamingConventionBinder" Version="2.0.0-beta4.22272.1" />
|
2021-06-26 21:31:43 +08:00
|
|
|
<PackageReference Include="System.Diagnostics.Process" Version="4.3.0" />
|
2020-01-05 23:47:38 +08:00
|
|
|
</ItemGroup>
|
2022-05-17 01:48:50 +08:00
|
|
|
|
2020-01-05 23:47:38 +08:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\BililiveRecorder.Core\BililiveRecorder.Core.csproj" />
|
2021-04-14 23:46:24 +08:00
|
|
|
<ProjectReference Include="..\BililiveRecorder.ToolBox\BililiveRecorder.ToolBox.csproj" />
|
2021-05-30 19:16:20 +08:00
|
|
|
<ProjectReference Include="..\BililiveRecorder.Web\BililiveRecorder.Web.csproj" />
|
2020-01-05 23:47:38 +08:00
|
|
|
</ItemGroup>
|
2022-05-17 01:48:50 +08:00
|
|
|
|
2020-01-05 23:47:38 +08:00
|
|
|
</Project>
|