-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEQSwitch.csproj
More file actions
58 lines (50 loc) · 2.56 KB
/
EQSwitch.csproj
File metadata and controls
58 lines (50 loc) · 2.56 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>eqswitch.ico</ApplicationIcon>
<AssemblyName>EQSwitch</AssemblyName>
<RootNamespace>EQSwitch</RootNamespace>
<Version>3.10.0</Version>
<Description>EverQuest Multiboxing Window Manager for Shards of Dalaya</Description>
<Authors>itsnateai</Authors>
<Copyright>Copyright (C) 2026 itsnateai</Copyright>
<PackageLicenseExpression>GPL-2.0-or-later</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/itsnateai/eqswitch</PackageProjectUrl>
<!-- Single-file portable publish settings -->
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<PublishReadyToRun>true</PublishReadyToRun>
<!-- Suppress WinForms trim warnings -->
<EnableTrimAnalyzer>false</EnableTrimAnalyzer>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<!-- Exclude sub-projects from default globbing -->
<ItemGroup>
<Compile Remove="TestInput\**" />
<None Remove="TestInput\**" />
</ItemGroup>
<!-- Exclude inline unit tests from Release builds. They live alongside production code
for Debug-time test runs, but would bloat the 155 MB single-file publish and leak
Console.WriteLine to stdout in shipped binaries. -->
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<Compile Remove="Core\*Tests.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="eqswitch.ico" LogicalName="EQSwitch.eqswitch.ico" />
<EmbeddedResource Include="eqswitch-alt.ico" LogicalName="EQSwitch.eqswitch-alt.ico" />
</ItemGroup>
<!-- Copy native hook DLL to publish output. ExcludeFromSingleFile keeps it as a
separate file — it needs to exist on disk for injection into eqgame.exe. -->
<ItemGroup>
<Content Include="Native\eqswitch-hook.dll" Link="eqswitch-hook.dll" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" ExcludeFromSingleFile="true" />
<Content Include="Native\eqswitch-di8.dll" Link="eqswitch-di8.dll" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" ExcludeFromSingleFile="true" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="10.0.5" />
</ItemGroup>
</Project>