Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Jun 30, 2024
1 parent 36e7bcf commit 4f8c4bb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/OneWare.Ghdl/OneWare.Ghdl.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>0.9.4</Version>
<Version>0.9.5</Version>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand Down
4 changes: 4 additions & 0 deletions src/OneWare.Ghdl/Services/GhdlService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ public GhdlService(ILogger logger, IDockService dockService, ISettingsService se
}
_outputService.WriteLine(x);
return true;
}, err =>
{
_logger.Error(err);
return false;
});
}

Expand Down

0 comments on commit 4f8c4bb

Please sign in to comment.