mirror of
https://github.com/par274/sharpemu.git
synced 2026-07-26 04:39:17 +08:00
17 lines
589 B
XML
17 lines
589 B
XML
<!--
|
|
Copyright (C) 2026 SharpEmu Emulator Project
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
-->
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<!-- A small, standalone console tool: it speaks the debug server's
|
|
line-delimited JSON protocol directly over TCP and takes no dependency
|
|
on the emulator assemblies, so it builds and ships independently. -->
|
|
<OutputType>Exe</OutputType>
|
|
<AssemblyName>SharpEmu.DebugClient</AssemblyName>
|
|
<RootNamespace>SharpEmu.DebugClient</RootNamespace>
|
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
|
</PropertyGroup>
|
|
</Project>
|