Anders Storhaug
Anders Storhaug
I've also encountered this issue, workaround that I'm currently using is to add a leading empty statement (`;`).
Poking around in sources I see `ChainLoadFileName` (awesome). Maybe that's all that I need here?
I've also encountered this issue with .NET 6.
Ok, so, I have been playing around with this and determined that I can use the `NuGet.Commands` NuGet package to restore and reference packages. See this [gist](https://gist.github.com/andersstorhaug/c7460c7e754f343ae1ad2c6fd8dba051). Looks like using...
See also https://github.com/dotnet/roslyn/issues/50719 for issues with `MetadataReference` and .NET 5 single-file publish.
A little more info, I can get this library that's dependent on IxJS to work through [JSPM](https://jspm.org/) which utilizes import maps (+shim). This seems to show that it is indeed...
Will do, I believe that both the reproduction and the fix are fairly simple, so I may be able to get a PR out here within a couple of days.
I've found that it's actually possible to run CRT-Royale with vkBasalt, with some edits to the shader: - vkBasalt doesn't have `float4x3`, but you can replace with `float4x4` and swizzle...
On a broader note, you really have to wonder if vkBasalt couldn't use librashader to support RA shaders. I think that's been suggested here in another issue. I _might_ end...
As a side note.. I was able to fix antialiasing as well. In `tex2Daa` functions, had to fix the assignment for `true_pixel_to_tex_uv` by replacing `float2x2 * float` with `mul(float, float2x2)`....