Skip to content

Commit

Permalink
fix errors with debug adapter proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitalita committed Sep 1, 2023
1 parent 3c00915 commit 65fce0d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.3.0" />
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0" />
<PackageReference Include="Serilog.Extensions.Logging.File" Version="2.0.0-dev-00032" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
<PackageReference Include="Serilog.Extensions.Logging.File" Version="3.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="WebSocketSharp-netstandard" Version="1.0.1" />
</ItemGroup>

Expand Down
1 change: 1 addition & 0 deletions src/DarkId.Papyrus.DebugAdapterProxy/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ static int Main(string[] args)
})
.WithNotParsed((error) =>
{
logger.LogError("Could not parse arguments! Adapter will exit...");
exitCode = 1;
});

Expand Down

0 comments on commit 65fce0d

Please sign in to comment.