-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWiFiManager.csproj
More file actions
27 lines (24 loc) · 947 Bytes
/
Copy pathWiFiManager.csproj
File metadata and controls
27 lines (24 loc) · 947 Bytes
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
<?xml version='1.0' encoding='utf-8'?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>wifimgr</AssemblyName>
<RootNamespace>WiFiManager</RootNamespace>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>false</SelfContained>
<PublishTrimmed>false</PublishTrimmed>
<PlatformTarget>x64</PlatformTarget>
<ApplicationIcon>wifi.ico</ApplicationIcon>
<Version>1.0.3</Version>
<Authors>Hadi Cahyadi</Authors>
<Description>WiFi Manager CLI - Manage WiFi connections from command line</Description>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
</Project>