-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathDemo.csproj
More file actions
34 lines (27 loc) · 1003 Bytes
/
Demo.csproj
File metadata and controls
34 lines (27 loc) · 1003 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
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>net8.0-windows;net9.0-windows</TargetFrameworks>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Platforms>AnyCPU;x64;x86</Platforms>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationHighDpiMode>PerMonitorV2</ApplicationHighDpiMode>
</PropertyGroup>
<ItemGroup>
<None Include="..\.editorconfig" Link=".editorconfig" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Magick.NET-Q16-AnyCPU" Version="14.10.1" />
<PackageReference Include="Magick.NET.SystemWindowsMedia" Version="8.0.7" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DXControl\D2Phap.DXControl.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="photo.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>