-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWindowManager.csproj
More file actions
24 lines (21 loc) · 866 Bytes
/
Copy pathWindowManager.csproj
File metadata and controls
24 lines (21 loc) · 866 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>WindowManager</RootNamespace>
<AssemblyName>WindowManager</AssemblyName>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Version>2.2.0</Version>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
<!-- DPI ustawiane w app.manifest (PerMonitorV2) — analizator WinForms tego nie rozumie -->
<NoWarn>$(NoWarn);WFO0003</NoWarn>
</PropertyGroup>
<ItemGroup>
<!-- harness weryfikujący dopasowywanie okien na danych syntetycznych -->
<InternalsVisibleTo Include="MatchHarness" />
</ItemGroup>
</Project>