Mpeg4ConverterTool.csproj 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp3.1</TargetFramework>
  5. <StartupObject>Mpeg4ConverterTool.Program</StartupObject>
  6. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  9. <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  12. <Optimize>true</Optimize>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <PackageReference Include="MongoDB.Driver" Version="2.12.3" />
  16. <PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
  17. <PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="1.68.1.1" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\..\Common\Vinno.IUS.Common.Media.Standard\Vinno.IUS.Common.Media.csproj" />
  21. <ProjectReference Include="..\..\Common\Vinno.vCloud.Common.Vid2.Standard\Vinno.vCloud.Common.Vid2.csproj" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <None Update="setting.conf">
  25. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  26. </None>
  27. <None Update="Utilities\ffmpeg.exe">
  28. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  29. </None>
  30. </ItemGroup>
  31. </Project>