Christopher-Marcel Esser

Results 107 comments of Christopher-Marcel Esser

The flow to work on this repo is the following: 1. Work on feature/fix branches and open a PR against `develop`. **All commits need to be semantic commits and follow...

You put (re)sources you need to be part of **built** packages into `Sources/UnityPackaging`. The actual built package will be in the build output folder of that UnityPackaging project. I'm just...

Thanks for the quick reply, and the detailed information! >Interesting that they know which files are generated. I believe Roslyn nowadays checks for `GeneratedCodeAttribute`, maybe even the `` comment tag....

I believe this is due to this snippet not actually "copying over" the default value assignments to the builder's properties: https://github.com/amis92/RecordGenerator/blob/f1fca2d21453aa6d9d20ff53299bdf11db6bdf36/src/Amadevus.RecordGenerator.Generators/BuilderPartialGenerator.cs#L33-L48 Then once you add `private set` I think it's...

Personally I've run into the need once, too. The issue for me was the fact that users might expect or prefer a different name, e.g. `add`/`set` instead of `insert` for...

> Is removing FSharp.Core (6.0.5) from local nuget cache and having `true` helping the build? Removing that version from the local cache does indeed help. For my team, this reliably...

Apologies, I copied the wrong property and confused myself. My team is using `DisableImplicitNuGetFallbackFolder` like the original poster said. This works fine - as long as every team member ensures...

Both properties are seemingly very closely related for the same thing - the extra search paths pointing to files not sourced from NuGet.org (or your other configured feeds): https://github.com/dotnet/sdk/blob/a30e465a2e2ea4e2550f319a2dc088daaafe5649/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.NuGetOfflineCache.targets#L20-L29 I'm...

> Not sure what you mean by "works fine". I have long used `DisableImplicitNuGetFallbackFolder` (and not `DisableImplicitLibraryPacksFolder`), deleting the NuGet cache did not change the content hash in the lock...

If you would like to turn that functionality off (maybe to _ensure_ the CI never spends time to download and install the required components repeatedly): [Put `android.builder.sdkDownload=false` into `gradle.properties`](https://developer.android.com/studio/intro/update#download-with-gradle).