-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathImage2Icon.csproj
21 lines (21 loc) · 942 Bytes
/
Image2Icon.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net472</TargetFramework>
<LangVersion>10</LangVersion>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<AutoGenerateBindingRedirects>True</AutoGenerateBindingRedirects>
<ApplicationIcon>Resources\Icon.ico</ApplicationIcon>
<ApplicationManifest>Resources\Manifest.xml</ApplicationManifest>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="Magick.NET-Q16-HDRI-AnyCPU" Version="14.4.0" />
</ItemGroup>
</Project>