From 7fb0466e418ac2b3fe8a8c93dc47a8682a2eec72 Mon Sep 17 00:00:00 2001 From: Przemyslaw Klys Date: Mon, 6 May 2024 21:03:42 +0200 Subject: [PATCH] Update changelog --- CHANGELOG.MD | 2 +- Examples/Example.DetectUsedLibraries.ps1 | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 Examples/Example.DetectUsedLibraries.ps1 diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 3e4a86c..bb7a4ce 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -1,6 +1,6 @@ # PSPublishModule Changelog -## 2.0.12 +## 2.0.12 - 2024.05.06 - Always publish to Github with PreReleaseTag if it's set - Added support for HelpOut module to be used for help generation (platyPS will stay default for now) - Added support for `NETIgnoreLibraryOnLoad` in `New-ConfigurationBuild` to allow for ignoring libraries on load (for example C/C++ dlls) diff --git a/Examples/Example.DetectUsedLibraries.ps1 b/Examples/Example.DetectUsedLibraries.ps1 new file mode 100644 index 0000000..c9b31cb --- /dev/null +++ b/Examples/Example.DetectUsedLibraries.ps1 @@ -0,0 +1 @@ +[appdomain]::currentdomain.getassemblies() | Sort-Object -Property fullname | Format-Table Fullname,Name,Location -AutoSize \ No newline at end of file