-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGhostDeck.csproj
More file actions
32 lines (28 loc) · 1.21 KB
/
Copy pathGhostDeck.csproj
File metadata and controls
32 lines (28 loc) · 1.21 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<!-- Core/GpuLoad.cs calls Direct3D through raw vtable pointers; nothing else needs this -->
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>app.ico</ApplicationIcon>
<AssemblyName>GhostDeck</AssemblyName>
<RootNamespace>GhostDeck</RootNamespace>
<Product>GhostDeck</Product>
<Version>1.0.0</Version>
<Company>WYGODA DAWID FENIX INSPIRE</Company>
<Copyright>Copyright (C) 2026 Dawid Wygoda</Copyright>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Management" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<!-- multi-size ghost icon reachable at runtime (window/taskbar); ApplicationIcon only brands the exe file -->
<EmbeddedResource Include="app.ico" LogicalName="GhostDeck.app.ico" />
</ItemGroup>
</Project>