-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodexChannelLauncher.csproj
More file actions
41 lines (40 loc) · 1.81 KB
/
Copy pathCodexChannelLauncher.csproj
File metadata and controls
41 lines (40 loc) · 1.81 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<UseSystemDrawing>true</UseSystemDrawing>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>CodexChannelLauncher</AssemblyName>
<RootNamespace>CodexChannelLauncher</RootNamespace>
<AssemblyTitle>Codex 多开器</AssemblyTitle>
<Product>Codex 多开器</Product>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>Assets\CodexChannelLauncher.ico</ApplicationIcon>
<Version>1.5.0-preview.1</Version>
<FileVersion>1.5.0.1</FileVersion>
<Authors>yyyyyp233</Authors>
<Description>非官方 Windows Codex App 多开与隔离工作空间启动器。</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/yyyyyp233/codex-multi-launcher</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishSingleFile>true</PublishSingleFile>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<PublishTrimmed>false</PublishTrimmed>
<DebugType>embedded</DebugType>
<InvariantGlobalization>false</InvariantGlobalization>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.WindowsDesktop.App.WindowsForms" />
<Compile Remove="tests\**\*.cs" />
<EmbeddedResource Remove="tests\**\*" />
<None Remove="tests\**\*" />
<Page Remove="tests\**\*.xaml" />
</ItemGroup>
</Project>