Mattias Karlsson

Results 79 comments of Mattias Karlsson

Interesting, I'm one of the maintainers behind @cake-build , see this could be an great potential add-in or tool for us. I see great benefit for a tool like this,...

@andreasohlund @Mpdreamz +1 for nuget, as it's almost always available in the build tool chain (i.e. Cake build scripts has "native" support for fetching tools via Nuget). Nothing stopping you...

Actually TargetFrameworkVersion is used by default if it's one framework specified.

@wexman we've had 7 intentional breaking changes in 87 releases. Most of those have been because dependencies have introduces breaking changes. I.e. switching from .NET Standard 1.6 to 2.0 is...

I'm starting to think it's some edge case like a TimeZone difference or something, we do have Min/Max dates. https://github.com/cake-build/cake/blob/a1893a2bba26f49e089d66beeb78421cedf6126d/src/Cake.Common/IO/Zipper.cs#L24-L26 A workaround could be if we could repro we could...

This is the defaullt behavior in .NET when deleteing files. One option could be to add an overload that has an force option so it's explicit intent to change this...

@cake-build/cake-team I kinda feel this `WithProperty("DefineConstants", "A=a", "B=b");` should generate `/p:DefineConstants=A=a;B=b` that way we support both escaping and multiple values in a typed way. Potentially one could have an dictionary...

AFAIK as I know this is partially a limitation of .NET ZipEntry ( see dotnet/corefx#17342 ) There's work arounds i.e. ```csharp const int rw_rw_r = (0x8000 + 0x0100 + 0x0080...

@gitfool yip probably, but unsure/need to evaluate if we want to take that dependency, probably a good use case to test in an addin first and promote to Cake itself...