16 lines
385 B
XML
16 lines
385 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
<UseWPF>true</UseWPF>
|
|
<ApplicationIcon />
|
|
<StartupObject>WebApp.Program</StartupObject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Net.NetworkInformation" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|