David Gardiner

Results 160 comments of David Gardiner

Happy to update the package and or hand over maintaining it to you if that works. David

Changing the package id will cause it to be effectively a brand new package. Once this is done we can mark the old one as deprecated and make it forward...

I've just submitted https://community.chocolatey.org/packages/ndi-runtime. It will probably take a few days to get approved (there's a bit of a backlog of other packages in the queue)

I've just pushed 6.2.0 of the ndi-runtime package. I will need to write an update.ps1 script that checks the download binary to see if it has changed so that this...

So just checking, have you tried installing the package without providing any package parameters? The `chocolateyInstall.ps1` script only runs configure if `$configOpts` has been populated, and that is only done...

Thinking about this a bit more. I think that every string (or scalar) property is a candidate for a conditional value. In that sense, Conditional might be redundant? Instead, using...

I think we could keep it scoped to only activate on classes inheriting from `Step` or `AzureDevOpsTask`. Whether it's a source generator, or maybe `Step` just needs to implement `IYamlConvertible`...

I am building a Docker container that contains a dotnet tool preinstalled. For reasons of efficiency and layer size, I want to only install the runtime bits that are relevant...

I like the idea of simple. I actually discovered this library because I was banging my head fixing some dumb mistakes in a pipeline file (like forgetting the second trailing...

Another example: ```csharp var nodeApp = builder.AddJavaScriptApp("node-joke-api", "../NodeApp", "start") .WithPnpm() If([System.OperatingSystem]::IsWindows(), builder => builder.WithEnvironment("PATH", Environment.GetEnvironmentVariable("PATH") + ";" + Environment.ExpandEnvironmentVariables(@"%USERPROFILE%\AppData\Roaming\fnm\aliases\default"))) If(![System.OperatingSystem]::IsWindows(), builder => builder.WithEnvironment("PATH", Environment.GetEnvironmentVariable("PATH") + ";" + "/tmp/directory/")) .WithHttpEndpoint(env: "PORT")...