Skip to content

Commit

Permalink
Add dotdumper.vm
Browse files Browse the repository at this point in the history
Closes #630.
  • Loading branch information
vm-packages committed Aug 21, 2023
1 parent 92663e0 commit 616b2e3
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/dotdumper.vm/dotdumper.vm.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>dotdumper.vm</id>
<version>1.1</version>
<authors>ThisIsLibra</authors>
<description>An automatic unpacker and logger for DotNet Framework targeting files</description>
<dependencies>
<dependency id="common.vm" />
</dependencies>
</metadata>
</package>
10 changes: 10 additions & 0 deletions packages/dotdumper.vm/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
$ErrorActionPreference = 'Stop'
Import-Module vm.common -Force -DisableNameChecking

$toolName = 'DotDumper'
$category = 'dotNet'

$zipUrl = 'https://github.com/advanced-threat-research/DotDumper/releases/download/1.1/DotDumper.zip'
$zipSha256 = '504bce7018041dfc1a7c3ecc28443a3b7648a25e9d1430b5875c11a39b686a98'

VM-Install-From-Zip $toolName $category $zipUrl -zipSha256 $zipSha256 -consoleApp $true
7 changes: 7 additions & 0 deletions packages/dotdumper.vm/tools/chocolateyuninstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
$ErrorActionPreference = 'Continue'
Import-Module vm.common -Force -DisableNameChecking

$toolName = 'DotDumper'
$category = 'dotNet'

VM-Uninstall $toolName $category

0 comments on commit 616b2e3

Please sign in to comment.