mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
So far, CUETools was looking for FFmpeg.AutoGen in a directory
at the same level as the cuetools.net directory. Simplify getting the
sources of FFmpeg.AutoGen by adding it as a submodule.
- Add FFmpeg.AutoGen as a submodule inside the ThirdParty subdir using:
git submodule add https://github.com/Ruslan-B/FFmpeg.AutoGen.git \
ThirdParty/FFmpeg.AutoGen
- Checkout the latest release 4.1.0.4 of FFmpeg.AutoGen,
at commit: 9bb7daad329a103e1c563f80e1d9d7b5715ccff0
cd ThirdParty/FFmpeg.AutoGen/
git checkout 4.1.0.4
- Update the path to FFmpeg.AutoGen accordingly in:
CUETools\CUETools.sln
CUETools.Codecs.ffmpeg\CUETools.Codecs.ffmpeg.csproj
- Update README.md and remove text about separately getting
sources of FFmpeg.AutoGen from GitHub
- Add FFmpeg.AutoGen to License.txt
31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net45;netstandard2.0</TargetFrameworks>
|
|
<Version>2.1.7.0</Version>
|
|
<AssemblyName>CUETools.Codecs.ffmpegdll</AssemblyName>
|
|
<RootNamespace>CUETools.Codecs.ffmpegdll</RootNamespace>
|
|
<Product>CUETools</Product>
|
|
<Description>A library for encoding various files using official encoder.</Description>
|
|
<Copyright>Copyright (c) 2018-2020 Grigory Chudov</Copyright>
|
|
<Authors>Grigory Chudov</Authors>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<OutputPath>..\bin\$(Configuration)\plugins</OutputPath>
|
|
<RepositoryUrl>https://github.com/gchudov/cuetools.net</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<Company />
|
|
</PropertyGroup>
|
|
|
|
<ItemDefinitionGroup>
|
|
<ProjectReference>
|
|
<Private>False</Private>
|
|
</ProjectReference>
|
|
</ItemDefinitionGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CUETools.Codecs\CUETools.Codecs.csproj" />
|
|
<ProjectReference Include="..\ThirdParty\FFmpeg.AutoGen\FFmpeg.AutoGen\FFmpeg.AutoGen.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|