Skip to content

Commit

Permalink
Фикс EvilBeaver#1418
Browse files Browse the repository at this point in the history
  • Loading branch information
akpaevj committed Aug 5, 2024
1 parent ad7fe24 commit c070a52
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/VSCode.DebugAdapter/DebugeeProcess.cs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public void HandleDisconnect(bool terminate)
}
_debugger.Disconnect(terminate);

var mustKill = terminate || !_attachMode;
var mustKill = terminate && !_attachMode;

if (mustKill && _process != null && !_process.HasExited)
{
Expand Down
2 changes: 1 addition & 1 deletion src/VSCode.DebugAdapter/VSCode.DebugAdapter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<LangVersion>7.3</LangVersion>
<Version>1.7.0.0</Version>
<FileVersion>1.7.0.0</FileVersion>
<GenerateRuntimeConfigDevFile>true</GenerateRuntimeConfigDevFile>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'LinuxDebug' ">
Expand Down
2 changes: 2 additions & 0 deletions src/oscript/oscript.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@
<Platforms>x86;AnyCPU</Platforms>
<Configurations>Debug;Release;LinuxDebug</Configurations>
<RollForward>Major</RollForward>
<GenerateRuntimeConfigDevFile>true</GenerateRuntimeConfigDevFile>
</PropertyGroup>

<PropertyGroup>
<AssemblyTitle>1Script console host</AssemblyTitle>
</PropertyGroup>


<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<DocumentationFile>bin\x86\Debug\net452\oscript.xml</DocumentationFile>
Expand Down

0 comments on commit c070a52

Please sign in to comment.