mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 18:30:27 +01:00
13 lines
708 B
Plaintext
13 lines
708 B
Plaintext
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||
|
<LocalDebuggerCommandArguments>
|
||
|
</LocalDebuggerCommandArguments>
|
||
|
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
|
||
|
<LocalDebuggerCommand>$(ProjectDir)..\..\Bin\Debug\$(TargetFileName)</LocalDebuggerCommand>
|
||
|
</PropertyGroup>
|
||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||
|
<LocalDebuggerCommand>$(ProjectDir)..\..\Bin\$(TargetFileName)</LocalDebuggerCommand>
|
||
|
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
|
||
|
</PropertyGroup>
|
||
|
</Project>
|