-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetIsolate.csproj
More file actions
57 lines (47 loc) · 1.96 KB
/
NetIsolate.csproj
File metadata and controls
57 lines (47 loc) · 1.96 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationManifest>app.manifest</ApplicationManifest>
<!-- Branding -->
<AssemblyName>NetIsolatePlus</AssemblyName>
<RootNamespace>NetIsolatePlus</RootNamespace>
<Company>Tensioncore Administration Services</Company>
<Product>NetIsolate+</Product>
<Description>1-click network adapter isolation, instant toggles and status windows.</Description>
<Version>1.0.0</Version>
<FileVersion>1.0.0.0</FileVersion>
<Copyright>Tensioncore Administration Services 2026</Copyright>
<!-- Optional: set once you add the icon file -->
<ApplicationIcon>Assets\NetIsolatePlus.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<SelfContained>true</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>false</PublishTrimmed>
<!-- Bundle native WPF libs inside the single-file and extract at runtime -->
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<!-- Smaller EXE (slightly slower first launch when it unpacks) -->
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<!-- No PDBs -->
<DebugType>none</DebugType>
<!-- Small extra win if you don't need non-US/global collation rules -->
<InvariantGlobalization>false</InvariantGlobalization>
<!-- Keep this off; it increases size -->
<PublishReadyToRun>false</PublishReadyToRun>
</PropertyGroup>
<ItemGroup>
<None Remove="Assets\logo.png" />
<None Remove="Assets\NetIsolatePlus.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Management" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<Resource Include="Assets\logo.png" />
<Resource Include="Assets\NetIsolatePlus.ico" />
</ItemGroup>
</Project>