-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWifiSurvey.csproj
More file actions
48 lines (41 loc) · 1.8 KB
/
Copy pathWifiSurvey.csproj
File metadata and controls
48 lines (41 loc) · 1.8 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<UseWindowsForms>true</UseWindowsForms>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<!-- <ApplicationIcon>wifi.ico</ApplicationIcon> -->
<Title>WiFi Survey Tool</Title>
<Description>WiFi site survey and heatmap generation tool for IT professionals</Description>
<Company>CosmicBytez</Company>
<Product>WifiSurvey</Product>
<Version>1.1.0</Version>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<FileVersion>1.1.0.0</FileVersion>
<Copyright>Copyright (c) 2025 CosmicBytez</Copyright>
<!-- Portable/Self-Contained Deployment Settings -->
<SelfContained>true</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<PublishReadyToRun>true</PublishReadyToRun>
<!-- Trimming for smaller size (conservative settings for Windows Forms) -->
<PublishTrimmed>false</PublishTrimmed>
<!-- Note: Trimming disabled for WinForms - P/Invoke to wlanapi.dll requires reflection -->
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<!-- Exclude test files from main project -->
<Compile Remove="WifiSurvey.Tests\**" />
<EmbeddedResource Remove="WifiSurvey.Tests\**" />
<None Remove="WifiSurvey.Tests\**" />
</ItemGroup>
</Project>