-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTalkGuard.csproj
More file actions
30 lines (27 loc) · 1.24 KB
/
TalkGuard.csproj
File metadata and controls
30 lines (27 loc) · 1.24 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<ApplicationIcon>Assets\icon.ico</ApplicationIcon>
<AssemblyName>ShieldX</AssemblyName>
<RootNamespace>TalkGuard</RootNamespace>
<Version>1.0.0</Version>
<Authors>talkdedsec;threatvec</Authors>
<Description>Windows Privacy, Debloat & Firewall Manager</Description>
<Copyright>Copyright (c) 2026 talkdedsec & threatvec</Copyright>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.2" />
<PackageReference Include="MaterialDesignColors" Version="5.3.1" />
<PackageReference Include="MaterialDesignThemes" Version="5.3.1" />
<PackageReference Include="System.ServiceProcess.ServiceController" Version="8.0.1" />
</ItemGroup>
</Project>