-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodexProcessKeeper.csproj
More file actions
24 lines (24 loc) · 1.08 KB
/
Copy pathCodexProcessKeeper.csproj
File metadata and controls
24 lines (24 loc) · 1.08 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationHighDpiMode>PerMonitorV2</ApplicationHighDpiMode>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>CodexProcessKeeper</AssemblyName>
<RootNamespace>CodexProcessKeeper</RootNamespace>
<ApplicationManifest>app.manifest</ApplicationManifest>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<PublishTrimmed>false</PublishTrimmed>
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
<Version>1.0.0</Version>
<AssemblyTitle>Codex 进程守护器</AssemblyTitle>
<Product>Codex 进程守护器</Product>
<Description>持续将 Codex/ChatGPT 相关进程保持为高优先级并关闭效率模式。</Description>
</PropertyGroup>
</Project>