-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRemote.csproj
More file actions
37 lines (37 loc) · 2.51 KB
/
Remote.csproj
File metadata and controls
37 lines (37 loc) · 2.51 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<DebugType>full</DebugType>
<OutputType>WinExe</OutputType>
<FileVersion>1.5.8</FileVersion>
<NoWarn>$(NoWarn);CS0419</NoWarn>
<PublishTrimmed>false</PublishTrimmed>
<TargetFramework>net10.0</TargetFramework>
<ApplicationManifest>app.manifest</ApplicationManifest>
<PackageIcon>Resources/Drawable/Icon.512.png</PackageIcon>
<ApplicationIcon>Resources/Drawable/Icon.256.ico</ApplicationIcon>
<DefineConstants>$(DefineConstants);IMGUI;TEXTCOPY;XNA</DefineConstants>
<JsonSerializerIsReflectionEnabledByDefault>true</JsonSerializerIsReflectionEnabledByDefault>
<Description>Standalone Archipelago client, with dedicated feature-rich support for manual apworlds.</Description>
<PackageTags>Application MonoGame ImGui Archipelago MultiWorld MW MultiGame Multi Game Manual APWorld</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Remove="Remote.Portable/**/*.cs"/>
<None Remove="Remote.Resources/**/*.cs"/>
<Compile Remove="Remote.Portable/**/*.cs"/>
<Compile Remove="Remote.Resources/**/*.cs"/>
<PackageReference Include="TextCopy" Version="6.2.1"/>
<PackageReference Include="YamlDotNet" Version="16.3.0"/>
<PackageReference Include="ImGui.NET" Version="1.91.6.1"/>
<PackageReference Include="DesktopNotifications" Version="1.3.1"/>
<PackageReference Include="Archipelago.MultiClient.Net" Version="6.7.0"/>
<EmbeddedResource Include="Resources/Drawable/Icon.256.bmp" Link="Icon.bmp"/>
<PackageReference Include="DesktopNotifications.FreeDesktop" Version="1.3.1"/>
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.5-preview.1"/>
<ProjectReference Include="Remote.Portable/Remote.Portable.csproj" IncludeAssets="all"/>
<ProjectReference Include="Remote.Resources/Remote.Resources.csproj" IncludeAssets="all"/>
<Content Include="Binaries/Remote" Link="Remote" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="Never"/>
<PackageReference Include="Archipelago.MultiClient.Net.Analyzers" Version="2.0.1" PrivateAssets="all" ExcludeAssets="runtime"/>
<Content Include="Binaries/Remote.exe" Link="Remote.exe" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="Never"/>
<Content Include="Binaries/Remote-mac" Link="Remote-mac" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="Never"/>
</ItemGroup>
</Project>