From c42d5d7441acc35a6f77db734ea50d37386b4b03 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 23 Jan 2026 20:51:00 +0100 Subject: [PATCH 1/6] test --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 3e471ba..9d3b65b 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,7 @@ .idea/ .vs/ *.suo +*.cake # Local History for Visual Studio Code .history/* From 47f55016e3c41fe7cbc9f40f40bba9bc3a809dd2 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 23 Jan 2026 20:57:28 +0100 Subject: [PATCH 2/6] =?UTF-8?q?=F0=9F=A7=AA=20Test:=20Remove=20unnecessary?= =?UTF-8?q?=20file=20types=20from=20.gitignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9d3b65b..3717898 100644 --- a/.gitignore +++ b/.gitignore @@ -9,8 +9,6 @@ # IDE files .idea/ .vs/ -*.suo -*.cake # Local History for Visual Studio Code .history/* From 772982882f3a95572b413c123025d4a3c7e90e23 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Fri, 23 Jan 2026 21:15:13 +0100 Subject: [PATCH 3/6] =?UTF-8?q?=F0=9F=A7=AA=20Test:=20Remove=20IDE=20files?= =?UTF-8?q?=20from=20.gitignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.gitignore b/.gitignore index 3717898..456ca0f 100644 --- a/.gitignore +++ b/.gitignore @@ -6,10 +6,6 @@ !.vscode/extensions.json *.code-workspace -# IDE files -.idea/ -.vs/ - # Local History for Visual Studio Code .history/* From 711758c964dc62c8f0580c98e2f365e5a0b3d78b Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Tue, 27 Jan 2026 09:59:04 +0100 Subject: [PATCH 4/6] Remove outdated example for custom date format in Get-CurrentDateTime function --- src/functions/public/Get-CurrentDateTime.ps1 | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/functions/public/Get-CurrentDateTime.ps1 b/src/functions/public/Get-CurrentDateTime.ps1 index eb36af1..4c810eb 100644 --- a/src/functions/public/Get-CurrentDateTime.ps1 +++ b/src/functions/public/Get-CurrentDateTime.ps1 @@ -17,11 +17,6 @@ Returns the current date in short date format. - .EXAMPLE - Get-CurrentDateTime -Format 'Custom' -CustomFormat 'dddd, MMMM dd, yyyy' - - Returns the current date in a custom format like "Monday, January 20, 2026". - .LINK https://MariusStorhaug.github.io/MariusTestModule/Functions/Get-CurrentDateTime/ #> From 2d61d2e8bf2711f347c4165c0f22fea7d39ab21c Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Tue, 27 Jan 2026 10:41:50 +0100 Subject: [PATCH 5/6] Remove outdated example for short date format in Get-CurrentDateTime function --- src/functions/public/Get-CurrentDateTime.ps1 | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/functions/public/Get-CurrentDateTime.ps1 b/src/functions/public/Get-CurrentDateTime.ps1 index 4c810eb..b31b6d0 100644 --- a/src/functions/public/Get-CurrentDateTime.ps1 +++ b/src/functions/public/Get-CurrentDateTime.ps1 @@ -12,11 +12,6 @@ Returns the current date and time in the default format (yyyy-MM-dd HH:mm:ss). - .EXAMPLE - Get-CurrentDateTime -Format 'Short' - - Returns the current date in short date format. - .LINK https://MariusStorhaug.github.io/MariusTestModule/Functions/Get-CurrentDateTime/ #> From 39c0d00db5931e2c3dd2a01bc8b91336d0df237a Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Tue, 27 Jan 2026 10:52:21 +0100 Subject: [PATCH 6/6] Add example for short date format in Get-CurrentDateTime function --- src/functions/public/Get-CurrentDateTime.ps1 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/functions/public/Get-CurrentDateTime.ps1 b/src/functions/public/Get-CurrentDateTime.ps1 index b31b6d0..4c810eb 100644 --- a/src/functions/public/Get-CurrentDateTime.ps1 +++ b/src/functions/public/Get-CurrentDateTime.ps1 @@ -12,6 +12,11 @@ Returns the current date and time in the default format (yyyy-MM-dd HH:mm:ss). + .EXAMPLE + Get-CurrentDateTime -Format 'Short' + + Returns the current date in short date format. + .LINK https://MariusStorhaug.github.io/MariusTestModule/Functions/Get-CurrentDateTime/ #>