-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScreenGrid.csproj
More file actions
27 lines (23 loc) · 941 Bytes
/
ScreenGrid.csproj
File metadata and controls
27 lines (23 loc) · 941 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationHighDpiMode>PerMonitorV2</ApplicationHighDpiMode>
<RootNamespace>ScreenGrid</RootNamespace>
<AssemblyName>ScreenGrid</AssemblyName>
<Nullable>enable</Nullable>
<ApplicationIcon>docs\screengrid.ico</ApplicationIcon>
<!-- Publish optimization -->
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
</PropertyGroup>
<!-- Exclude test project subfolder from compilation -->
<ItemGroup>
<Compile Remove="tests\**" />
<None Remove="tests\**" />
<EmbeddedResource Remove="tests\**" />
</ItemGroup>
</Project>