Bob Calco
Bob Calco
I don't know if this is the root cause of what I'm seeing, but it's driving be bonkers. I keep getting this warning: ``` 6>C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\amd64\Microsoft.Common.CurrentVersion.targets(2301,5): warning MSB3277:...
I should also like to add that the very same DLL being called by the very same code I wrote that is shared by two of my EXE's works in...
And just to second what @linsongyang reports, here is proof the two DLLs are the same: ```powershell PS C:\projects\dotnet\apex-build\build\Accelerate\bin\Debug\net480> cd \ PS C:\> $dll1 = "C:\projects\dotnet\apex-build\build\Accelerate\bin\Debug\net480\Newtonsoft.Json.dll" PS C:\> $dll2 =...
OK Update: I removed most explicit requirements for the 13.0.0.1 version from my projects, and deleted all binding redirects that were generated by the tooling, and now my stuff compiles...
@leppie Thanks for the explanation. I don't really want to rely on the DLR, and am glad to hear its use has been minimized. My main desire (when I went...
One other thing -- maybe I should make a separate issue out of this? -- I saw very recently this was added to the Racket-lang world's toolbox: [Template Macros](https://github.com/dedbox/racket-template). I...
These were really helpful pointers, thanks! I have a bunch of questions but they seem to be answering themselves as I bang my head on concrete problems. I'll try to...
@leppie One good example showing bidirectional interop AND using precompiled libraries would be enough, I think, to get me started on the happy path. Also I'm interested in a web...
@leppie What is it exactly that not even .NET Core 5 provides that you need, without which precompiling libraries in .NET Core is blocked? That is, what's the nature of...
OK so, after a lot of back and forth, I'm now seriously about to give IronScheme a proper spin on a real commercial product I'm building. I have need of...