-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueueMonitor.vbproj
More file actions
23 lines (21 loc) · 889 Bytes
/
Copy pathQueueMonitor.vbproj
File metadata and controls
23 lines (21 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<AssemblyName>QueueMonitor</AssemblyName>
<RootNamespace>QueueMonitor</RootNamespace>
<Nullable>enable</Nullable>
<StartupObject>QueueMonitor.Program</StartupObject>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Version>1.0.0</Version>
<Company>Queue Monitor</Company>
<Product>Queue Monitor Pro</Product>
<Description>Applicazione per il monitoraggio delle code con gauge visuali</Description>
<SelfContained>true</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<MyType>WindowsFormsWithCustomSubMain</MyType>
</PropertyGroup>
</Project>