-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeepPurge.Core.csproj
More file actions
39 lines (35 loc) · 1.4 KB
/
DeepPurge.Core.csproj
File metadata and controls
39 lines (35 loc) · 1.4 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
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>DeepPurge.Core</RootNamespace>
<AssemblyName>DeepPurge.Core</AssemblyName>
<Version>0.9.0</Version>
<Authors>SysAdminDoc</Authors>
<Description>Core library for DeepPurge - open source program uninstaller</Description>
</PropertyGroup>
<ItemGroup>
<Using Include="System" />
<Using Include="System.IO" />
<Using Include="System.Diagnostics" />
<Using Include="System.Collections.Generic" />
<Using Include="System.Collections.Concurrent" />
<Using Include="System.Linq" />
<Using Include="System.Net" />
<Using Include="System.Net.Http" />
<Using Include="System.Text" />
<Using Include="System.Text.Json" />
<Using Include="System.Text.RegularExpressions" />
<Using Include="System.Threading" />
<Using Include="System.Threading.Tasks" />
<Using Include="System.ComponentModel" />
<Using Include="System.Runtime.InteropServices" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Management" Version="8.0.0" />
<PackageReference Include="System.ServiceProcess.ServiceController" Version="8.0.1" />
<PackageReference Include="System.IO.Hashing" Version="10.0.8" />
</ItemGroup>
</Project>