-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVideoLogoBatch.csproj
More file actions
37 lines (32 loc) · 1.06 KB
/
VideoLogoBatch.csproj
File metadata and controls
37 lines (32 loc) · 1.06 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>Assets\icon.ico</ApplicationIcon>
<Company>devCodeWithAI</Company>
<Product>LeekTools Suite</Product>
<Description>Batch video logo renderer with FFmpeg & WinForms UI</Description>
<Copyright>© 2024 devCodeWithAI</Copyright>
<PackageIcon>icon_128.png</PackageIcon>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<Content Include="Assets\icon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Management" Version="9.0.5" />
</ItemGroup>
<ItemGroup>
<None Update="Assets\icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="Assets\icon_128.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>