Marco Blessing

Results 31 comments of Marco Blessing

Finally I found some time working on this. I started with splitting down the input in its parts: ``` {%- assign protocol = include.link | split: "://" | first -%}...

Ohh this is just a work in progress example. It should show my current approch how to split a URI into its parts. But I wasn't sure how the composed...

@loic-sharma: We really need this to be fixed 😀 Is there any way to help? - Maybe we could provide additional analysis data of specific test scenarios?

BUMP. @loic-sharma: Any updates about this?

So If I get this right, the problem could be fixed when: - PowerShellGet v3 is published - because it uses the Nuget v3 API? - Baget already uses Nuget...

Hosting a private NuGet service for Powershell is was a hell in 2021. The problem here isn't the server part at all. Every time I had to connect a new...

You're absolutely right. My comment wasn't really clear and much more impulsive than it was intended. Just wanted to describe the situation I'm facing in a heterogen environment with: -...

Do you mean a script module like this which is liked in module manifest to dot source all other files? ```powershell $Functions = Get-ChildItem -Path $PSScriptRoot\*.ps1 -Recurse ForEach ($Item in...

Wow, thank you so much for this awesome detailed explanation 🎉 So If I get this right, the common way would be: - Use lowercase for basic types provided via...

Well I was looking for a way filling gap of using `PSCustomObjects` with custom `TypeNames` and using them as function parameter. I thought this would be very useful to ensure...