-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVPXMonitorSet.csproj
More file actions
33 lines (28 loc) · 1.06 KB
/
VPXMonitorSet.csproj
File metadata and controls
33 lines (28 loc) · 1.06 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<Platform>x64</Platform>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishTrimmed>true</PublishTrimmed>
<SelfContained>true</SelfContained>
<DebugType>none</DebugType>
<EnableCompressionInSingleFile>false</EnableCompressionInSingleFile>
<IncludeNativeLibrariesForSelfExtract>false</IncludeNativeLibrariesForSelfExtract>
<EnableComHosting>true</EnableComHosting>
<PublishComHostExtensions>true</PublishComHostExtensions>
<!-- Version Information -->
<Version>1.2.2.0</Version>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<FileVersion>1.2.2.0</FileVersion>
<Product>VPXMonitorSet</Product>
<Description>VPX Monitor Configuration Tool</Description>
<Copyright>redactd</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Management" Version="8.0.0" />
</ItemGroup>
</Project>