-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMuEncode.csproj
More file actions
33 lines (28 loc) · 908 Bytes
/
MuEncode.csproj
File metadata and controls
33 lines (28 loc) · 908 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
29
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows7.0</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>greenMu.ico</ApplicationIcon>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<Content Include="greenMu.ico" />
</ItemGroup>
<ItemGroup>
<None Update="Help\HelpPage.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Help\MainStyle.css">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="HelpPage.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>