-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Supposed to be v2 refactoring but no (#7)
* v2 migration and a fix for subcommands view (window instead of dialog) * Small refactoring of views, trying to get custom views up * fix dcd dcq command names * brought simple children of CommandViewFactory<TParser> back to single file * artifacts output * added dump array * fixes for filter typing and for buttons container
- Loading branch information
Showing
65 changed files
with
2,289 additions
and
2,067 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,19 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<TargetFramework>net7.0</TargetFramework> | ||
<LangVersion>11</LangVersion> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<CmdletVersion>0.0.8</CmdletVersion> | ||
<CmdletVersion>8.0.0</CmdletVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<UseArtifactsOutput>true</UseArtifactsOutput> | ||
<ARTIFACTS_PATH_DOTNET Condition=" '$(ARTIFACTS_PATH_DOTNET)' == '' ">$(MSBuildThisFileDirectory)artifacts</ARTIFACTS_PATH_DOTNET> | ||
<ARTIFACTS_PATH_DOTNET Condition=" '$(ARTIFACTS_PATH_DOTNET)' != '' ">$(ARTIFACTS_PATH_DOTNET)\$(SolutionName)</ARTIFACTS_PATH_DOTNET> | ||
<ArtifactsPath>$(ARTIFACTS_PATH_DOTNET)</ArtifactsPath> | ||
</PropertyGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,35 @@ | ||
$solutionPath = Get-Location | ||
|
||
pushd $solutionPath | ||
try | ||
{ | ||
$version = "0.0.8" | ||
$modulePath = "$solutionPath\PoshDotnetDumpAnalyzeViewerModule" | ||
$configuration = "Release" | ||
$output = "$solutionPath\Releases\publish" | ||
|
||
$version = "0.0.8" | ||
$modulePath = "$solutionPath\PoshDotnetDumpAnalyzeViewerModule" | ||
$configuration = "Release" | ||
$output = "$solutionPath\Releases\publish" | ||
|
||
dotnet publish $modulePath -c $configuration -o $output | ||
cd "$solutionPath\Releases" | ||
dotnet publish $modulePath -c $configuration -o $output | ||
cd "$solutionPath\Releases" | ||
|
||
Remove-Item $version -Force -Recurse -ErrorAction SilentlyContinue | ||
Remove-Item $version -Force -Recurse -ErrorAction SilentlyContinue | ||
|
||
mkdir $version | ||
cd $version | ||
mkdir "PoshDotnetDumpAnalyzeViewerModule" | ||
cd "PoshDotnetDumpAnalyzeViewerModule" | ||
mkdir $version | ||
cd $version | ||
mkdir "PoshDotnetDumpAnalyzeViewerModule" | ||
cd "PoshDotnetDumpAnalyzeViewerModule" | ||
|
||
$dllNames = | ||
$dllNames = | ||
"NStack.dll", | ||
"PoshDotnetDumpAnalyzeViewer.dll", | ||
"PoshDotnetDumpAnalyzeViewerModule.dll", | ||
"Terminal.Gui.dll" | ||
|
||
foreach ($file in $dllNames) { | ||
Copy-Item "$output\$file" -Destination ".\" | ||
} | ||
foreach ($file in $dllNames) { | ||
Copy-Item "$output\$file" -Destination ".\" | ||
} | ||
|
||
Copy-Item "$modulePath\PoshDotnetDumpAnalyzeViewerModule.psd1" -Destination ".\" | ||
|
||
popd | ||
Copy-Item "$modulePath\PoshDotnetDumpAnalyzeViewerModule.psd1" -Destination ".\" | ||
} | ||
finally | ||
{ | ||
popd | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.