Skip to content

Commit 090fc0f

Browse files
committed
Added Uninstall.exe (WiP)
1 parent 62f39dd commit 090fc0f

File tree

5 files changed

+74
-0
lines changed

5 files changed

+74
-0
lines changed

src/CleanBrowsingClient.sln

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,38 @@ VisualStudioVersion = 16.0.29424.173
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CleanBrowsingClient", "CleanBrowsingClient\CleanBrowsingClient.csproj", "{60AB2E04-725F-41EC-8F07-2C633115E939}"
77
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Uninstall", "Uninstall\Uninstall.csproj", "{6D2F3A05-D31B-474C-AD72-F01EC1B92D3E}"
9+
EndProject
810
Global
911
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12+
Debug|Any CPU = Debug|Any CPU
1013
Debug|x64 = Debug|x64
1114
Debug|x86 = Debug|x86
15+
Release|Any CPU = Release|Any CPU
1216
Release|x64 = Release|x64
1317
Release|x86 = Release|x86
1418
EndGlobalSection
1519
GlobalSection(ProjectConfigurationPlatforms) = postSolution
20+
{60AB2E04-725F-41EC-8F07-2C633115E939}.Debug|Any CPU.ActiveCfg = Debug|x86
1621
{60AB2E04-725F-41EC-8F07-2C633115E939}.Debug|x64.ActiveCfg = Debug|x64
1722
{60AB2E04-725F-41EC-8F07-2C633115E939}.Debug|x64.Build.0 = Debug|x64
1823
{60AB2E04-725F-41EC-8F07-2C633115E939}.Debug|x86.ActiveCfg = Debug|x86
1924
{60AB2E04-725F-41EC-8F07-2C633115E939}.Debug|x86.Build.0 = Debug|x86
25+
{60AB2E04-725F-41EC-8F07-2C633115E939}.Release|Any CPU.ActiveCfg = Release|x86
2026
{60AB2E04-725F-41EC-8F07-2C633115E939}.Release|x64.ActiveCfg = Release|x64
2127
{60AB2E04-725F-41EC-8F07-2C633115E939}.Release|x64.Build.0 = Release|x64
2228
{60AB2E04-725F-41EC-8F07-2C633115E939}.Release|x86.ActiveCfg = Release|x86
2329
{60AB2E04-725F-41EC-8F07-2C633115E939}.Release|x86.Build.0 = Release|x86
30+
{6D2F3A05-D31B-474C-AD72-F01EC1B92D3E}.Debug|Any CPU.ActiveCfg = Debug|x86
31+
{6D2F3A05-D31B-474C-AD72-F01EC1B92D3E}.Debug|x64.ActiveCfg = Debug|x64
32+
{6D2F3A05-D31B-474C-AD72-F01EC1B92D3E}.Debug|x64.Build.0 = Debug|x64
33+
{6D2F3A05-D31B-474C-AD72-F01EC1B92D3E}.Debug|x86.ActiveCfg = Debug|x86
34+
{6D2F3A05-D31B-474C-AD72-F01EC1B92D3E}.Debug|x86.Build.0 = Debug|x86
35+
{6D2F3A05-D31B-474C-AD72-F01EC1B92D3E}.Release|Any CPU.ActiveCfg = Release|x86
36+
{6D2F3A05-D31B-474C-AD72-F01EC1B92D3E}.Release|x64.ActiveCfg = Release|x64
37+
{6D2F3A05-D31B-474C-AD72-F01EC1B92D3E}.Release|x64.Build.0 = Release|x64
38+
{6D2F3A05-D31B-474C-AD72-F01EC1B92D3E}.Release|x86.ActiveCfg = Release|x86
39+
{6D2F3A05-D31B-474C-AD72-F01EC1B92D3E}.Release|x86.Build.0 = Release|x86
2440
EndGlobalSection
2541
GlobalSection(SolutionProperties) = preSolution
2642
HideSolutionNode = FALSE

src/Uninstall/Program.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
3+
namespace Uninstall
4+
{
5+
class Program
6+
{
7+
static void Main(string[] args)
8+
{
9+
Console.WriteLine("Uninstall");
10+
}
11+
}
12+
}

src/Uninstall/Uninstall.csproj

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>netcoreapp3.0</TargetFramework>
6+
<ApplicationIcon>cleanbrowsing.ico</ApplicationIcon>
7+
<Authors>Christian Hermann (@bitbeans)</Authors>
8+
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
9+
<PublishTrimmed>true</PublishTrimmed>
10+
<PublishSingleFile>true</PublishSingleFile>
11+
<PublishReadyToRun>false</PublishReadyToRun>
12+
<PublishReadyToRunShowWarnings>true</PublishReadyToRunShowWarnings>
13+
<Platforms>x64;x86</Platforms>
14+
<Version>1.0.0.0</Version>
15+
<ApplicationManifest>app.manifest</ApplicationManifest>
16+
</PropertyGroup>
17+
18+
</Project>

src/Uninstall/app.manifest

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
3+
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
4+
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
5+
<security>
6+
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
7+
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
8+
</requestedPrivileges>
9+
</security>
10+
</trustInfo>
11+
12+
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
13+
<application>
14+
<!-- Windows 7 -->
15+
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />
16+
17+
<!-- Windows 8 -->
18+
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />
19+
20+
<!-- Windows 8.1 -->
21+
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />
22+
23+
<!-- Windows 10 -->
24+
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />
25+
26+
</application>
27+
</compatibility>
28+
</assembly>

src/Uninstall/cleanbrowsing.ico

14.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)