Christopher-Marcel Esser

Results 107 comments of Christopher-Marcel Esser

AFAIK (and I've only contributed a tiny change to this project) the generated types are all cached here: https://github.com/fsprojects/FSharp.Data.GraphQL/blob/ddea9b4edab1bdc25041f82fef513086052065f9/src/FSharp.Data.GraphQL.Client.DesignTime/ProvidedTypesHelper.fs#L934

I've not done this before myself yet, and most examples I know about only call into different native libraries for each platform, but all of them share a common API...

The following `.csproj` does add the various existing assemblies into a single NuGet package, which seems to work. I named it `SpiderEye.Packaging`, so that's why the `AssemblyName` gets adjusted before...

> It's a bit different though from what I'd need here. You include native libs while I need to include .Net libs that should get referenced. I think that's what...

I ran into a few more issues, so it will be a bit until I can get this into a state that hopefully works. Then we can clean it up...

I'm running into this issue. My customers are getting a chance to install my app into a per-user folder or to a per-machine location. The latter means that the installation...

Oh! Turns out [WebView2 supports looking up environment variables](https://docs.microsoft.com/en-us/dotnet/api/microsoft.web.webview2.core.corewebview2environment.createasync?view=webview2-dotnet-1.0.1293.44#remarks) for this. I've successfully used the following: ```csharp Environment.SetEnvironmentVariable("WEBVIEW2_USER_DATA_FOLDER", Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "MyCompany", "MyProduct", "Caches", "WebView")) ``` I'll retract my offer for a...

I'm still a friend of offering prefabs as part of VRTK prefabs (each as a single package, as #3 states), to ensure they continue being maintained. A throw teleporter is...

The problem you're raising sounds like the same stuff core Zinnia and VRTK solved already. Create a "prefab facade" and ask users to inject the things your stuff needs explicitly....

I'd like to take a stab at this, but I'll need some help. Apologies if there's something I'm missing - I looked into this repo's contrib guidelines (and other docs)...