-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAudioConverter.csproj
More file actions
30 lines (26 loc) · 1.21 KB
/
AudioConverter.csproj
File metadata and controls
30 lines (26 loc) · 1.21 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>images\icon.ico</ApplicationIcon>
<PublishSingleFile>true</PublishSingleFile>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<SelfContained>true</SelfContained>
<ApplicationHighDpiMode>PerMonitorV2</ApplicationHighDpiMode>
<EnableWindowsFormsHighDpiAutoResizing>true</EnableWindowsFormsHighDpiAutoResizing>
<ApplicationManifest>app.manifest</ApplicationManifest>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DebugType>None</DebugType>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="images\*.png;images\*.ico;images\*.jpg;images\*.jpeg;images\*.gif;images\*.bmp;images\*.webp" />
<EmbeddedResource Include="lang\*.json" />
<EmbeddedResource Include="FFmpeg\ffmpeg.exe" />
</ItemGroup>
</Project>