-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathndd2.csproj
75 lines (68 loc) · 2.75 KB
/
ndd2.csproj
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<TargetFramework>net8.0-windows</TargetFramework>
<LangVersion>11.0</LangVersion>
<ApplicationHighDpiMode>SystemAware</ApplicationHighDpiMode>
<ForceDesignerDpiUnaware>yes</ForceDesignerDpiUnaware>
</PropertyGroup>
<ItemGroup>
<None Remove="native\ffmpeg\avcodec-61.dll" />
<None Remove="native\ffmpeg\avdevice-61.dll" />
<None Remove="native\ffmpeg\avfilter-10.dll" />
<None Remove="native\ffmpeg\avformat-61.dll" />
<None Remove="native\ffmpeg\avutil-59.dll" />
<None Remove="native\ffmpeg\postproc-58.dll" />
<None Remove="native\ffmpeg\swresample-5.dll" />
<None Remove="native\ffmpeg\swscale-8.dll" />
</ItemGroup>
<ItemGroup>
<Content Include="native\ffmpeg\avcodec-61.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="native\ffmpeg\avdevice-61.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="native\ffmpeg\avfilter-10.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="native\ffmpeg\avformat-61.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="native\ffmpeg\avutil-59.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="native\ffmpeg\postproc-58.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="native\ffmpeg\swresample-5.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="native\ffmpeg\swscale-8.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="FFMediaToolkit" Version="4.5.1" />
<PackageReference Include="FFmpeg.AutoGen" Version="7.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.5" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
</Project>