-
Notifications
You must be signed in to change notification settings - Fork 0
/
SuperVideo.csproj
49 lines (41 loc) · 1.47 KB
/
SuperVideo.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>favicon-32.ico</ApplicationIcon>
<Authors>$(AssemblyName),厦门恒得丰科技,Super科技</Authors>
<Product>$(AssemblyName),简单视频处理demo</Product>
<Description>哈哈哈 </Description>
</PropertyGroup>
<ItemGroup>
<Compile Remove="MainForm - 复制.cs" />
<Compile Remove="MainForm - 复制.Designer.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="MainForm - 复制.resx" />
</ItemGroup>
<ItemGroup>
<Content Include="favicon-32.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Emgu.CV" Version="4.9.0.5494" />
<PackageReference Include="Emgu.CV.runtime.windows" Version="4.9.0.5494" />
<PackageReference Include="FFmpeg.AutoGen" Version="7.0.0" />
</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>