2018-11-07 07:14:00 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
|
2018-03-12 18:57:20 +08:00
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2018-03-25 06:46:05 +08:00
|
|
|
<Version>0.0.0.0</Version>
|
|
|
|
<Authors>Genteure</Authors>
|
|
|
|
<Company>Genteure</Company>
|
|
|
|
<AssemblyVersion>0.0.0.0</AssemblyVersion>
|
|
|
|
<FileVersion>0.0.0.0</FileVersion>
|
2018-11-07 07:14:00 +08:00
|
|
|
<FileUpgradeFlags>
|
|
|
|
</FileUpgradeFlags>
|
|
|
|
<UpgradeBackupLocation>
|
|
|
|
</UpgradeBackupLocation>
|
|
|
|
<OldToolsVersion>2.0</OldToolsVersion>
|
2018-03-12 18:57:20 +08:00
|
|
|
</PropertyGroup>
|
2018-11-07 13:47:24 +08:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
<DebugSymbols>false</DebugSymbols>
|
|
|
|
</PropertyGroup>
|
2018-03-21 20:56:56 +08:00
|
|
|
<ItemGroup>
|
2018-10-24 13:33:43 +08:00
|
|
|
<PackageReference Include="Autofac" Version="4.8.1" />
|
2018-11-01 23:40:50 +08:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
|
|
|
<PackageReference Include="NLog" Version="4.5.10" />
|
2018-03-21 20:56:56 +08:00
|
|
|
</ItemGroup>
|
2018-03-12 18:57:20 +08:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\BililiveRecorder.FlvProcessor\BililiveRecorder.FlvProcessor.csproj" />
|
|
|
|
</ItemGroup>
|
2019-11-24 09:38:31 +08:00
|
|
|
<PropertyGroup>
|
|
|
|
<PreBuildEvent>cd $(SolutionDir)
|
|
|
|
powershell -ExecutionPolicy Bypass -File .\CI\patch_buildinfo.ps1 Core</PreBuildEvent>
|
|
|
|
</PropertyGroup>
|
2018-11-07 07:14:00 +08:00
|
|
|
</Project>
|