-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVideoEncoder.fsproj
More file actions
28 lines (24 loc) · 886 Bytes
/
Copy pathVideoEncoder.fsproj
File metadata and controls
28 lines (24 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>
<ItemGroup>
<None Include="Dockerfile" />
<None Include="..\.dockerignore" Link=".dockerignore">
<DependentUpon>$(DockerDefaultDockerfile)</DependentUpon>
</None>
<Compile Include="ResultUtils.fs" />
<Compile Include="Utils.fs" />
<Compile Include="ArgsProvider.fs" />
<Compile Include="MediaInfo.fs" />
<Compile Include="MediaEncoder.fs" />
<Compile Include="EncodingService.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="6.0.3" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.14.0" />
</ItemGroup>
</Project>