2025-04-28 16:08:16 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
|
|
|
<LocalDebuggerCommand>$(SolutionDir)Bin\$(TargetName)_x86d$(TargetExt)</LocalDebuggerCommand>
|
|
|
|
|
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
|
|
|
<LocalDebuggerCommand>$(SolutionDir)Bin\$(TargetName)_x86$(TargetExt)</LocalDebuggerCommand>
|
|
|
|
|
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
|
<LocalDebuggerCommand>$(SolutionDir)Bin\$(TargetName)_x64$(TargetExt)</LocalDebuggerCommand>
|
|
|
|
|
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
|
|
|
|
|
</PropertyGroup>
|
2025-05-03 20:57:22 +08:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
|
<LocalDebuggerCommand>$(SolutionDir)Bin\$(TargetName)_x64d$(TargetExt)</LocalDebuggerCommand>
|
|
|
|
|
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
|
|
|
|
|
</PropertyGroup>
|
2025-04-28 16:08:16 +08:00
|
|
|
</Project>
|