Skip to content

Commit

Permalink
0.0.5 bump
Browse files Browse the repository at this point in the history
  • Loading branch information
En3Tho committed Jun 18, 2023
1 parent c7e8024 commit 34b31ea
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<PackageVersion>0.0.4</PackageVersion>
<AssemblyVersion>0.0.4</AssemblyVersion>
<FileVersion>0.0.4</FileVersion>
<PackageVersion>0.0.5</PackageVersion>
<AssemblyVersion>0.0.5</AssemblyVersion>
<FileVersion>0.0.5</FileVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="En3Tho.ValueTupleExtensions" Version="1.0.1" />
<PackageReference Include="System.Runtime.Experimental" Version="6.0.2" />
<PackageReference Include="Terminal.Gui" Version="1.5.0" />
</ItemGroup>
Expand Down
4 changes: 3 additions & 1 deletion PoshDotnetDumpAnalyzeViewer/Tasks/UITask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ internal void Start()

internal void SetContinuation(Action cont)
{
continuation = () => Application.MainLoop.Invoke(cont);
continuation = cont;
}

public GuiCsTaskAwaiter GetAwaiter() => new(this);
Expand Down Expand Up @@ -67,6 +67,8 @@ public void GetResult()
case Exception ex:
ExceptionDispatchInfo.Throw(ex);
break;
case null:
throw new("Synchronous awaits are not supported");
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<PackageVersion>0.0.4</PackageVersion>
<AssemblyVersion>0.0.4</AssemblyVersion>
<FileVersion>0.0.4</FileVersion>
<PackageVersion>0.0.5</PackageVersion>
<AssemblyVersion>0.0.5</AssemblyVersion>
<FileVersion>0.0.5</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
RootModule = 'PoshDotnetDumpAnalyzeViewerModule.dll'

# Version number of this module.
ModuleVersion = '0.0.4'
ModuleVersion = '0.0.5'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ It's able to list output of all supported SOS commands and additionally custom p
Get-DotnetDumpAnalyzeViewer "path-to-dump-file"
```

Note that this viewer is completely dependent on dotnet-dump and it does not bundle sos or anything like that.
Note that this viewer is completely dependent on dotnet-dump (tested on 7.0.421801) and it does not bundle sos or anything like that.

Command field:
- Enter -> invoke command or get already existing tab
Expand Down

0 comments on commit 34b31ea

Please sign in to comment.