-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEasyZoomer.csproj
34 lines (34 loc) · 1.33 KB
/
EasyZoomer.csproj
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>
<TargetFramework>net8.0-windows</TargetFramework>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>easyzoomer.ico</ApplicationIcon>
<UseWPF>true</UseWPF>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Version>1.0.1</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NHotkey.Wpf" Version="3.0.0" />
<PackageReference Include="Velopack" Version="0.0.594" />
<PackageReference Include="WPF-UI" Version="3.0.5" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="System.Drawing.Common" Version="8.0.8" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
</ItemGroup>
<ItemGroup>
<None Remove="Assets\easyzoomerlogo.png" />
<None Remove="Assets\easyzoomerlogo1024.png" />
<None Remove="Assets\screenshot-1.png" />
</ItemGroup>
<ItemGroup>
<Content Include="easyzoomer.ico" />
</ItemGroup>
<ItemGroup>
<Resource Include="Assets\easyzoomerlogo.png" />
<Resource Include="Assets\easyzoomerlogo1024.png" />
<Resource Include="Assets\screenshot-1.png" />
</ItemGroup>
</Project>