I thought I'd try out speeding up my compiles with Reference Assemblies. So I add this to my projects:
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
<Deterministic>true</Deterministic>
But get a nasty error for my F# projects:
error : Expected file "obj\Debug\net5.0\ref\xyz.dll" does not exist.
It seems like F# doesn't support reference assemblies.
Will this be fixed?
Is there a way to do this with F# signature files?