-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeepPurge.App.csproj
More file actions
36 lines (32 loc) · 1.23 KB
/
DeepPurge.App.csproj
File metadata and controls
36 lines (32 loc) · 1.23 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
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>DeepPurge.App</RootNamespace>
<AssemblyName>DeepPurge</AssemblyName>
<Version>0.9.0</Version>
<Authors>SysAdminDoc</Authors>
<Description>DeepPurge - Open source program uninstaller for Windows</Description>
<ApplicationIcon>..\..\icon.ico</ApplicationIcon>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<Using Include="System" />
<Using Include="System.IO" />
<Using Include="System.Diagnostics" />
<Using Include="System.Collections.Generic" />
<Using Include="System.Collections.ObjectModel" />
<Using Include="System.Linq" />
<Using Include="System.Threading" />
<Using Include="System.Threading.Tasks" />
<Using Include="System.ComponentModel" />
<Using Include="System.Windows" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.2" />
<ProjectReference Include="..\DeepPurge.Core\DeepPurge.Core.csproj" />
</ItemGroup>
</Project>