To reproduce:
Download https://github.com/nventive/Uno.QuickStart
Add a .NETStandard2_0 project called TestMe.
Reference TestMe in the MyApp.Droid project.
Building MyApp.Droid brings compile error:
System.InvalidOperationException: The project(s) TestMe did not provide any metadata reference. This may be due to an invalid path, such as $(SolutionDir) being used in the csproj; try using relative paths instead.This may also be related to a missing default configuration directive. Refer to the Uno.SourceGenerator Readme.md file for more details. at Uno.SourceGeneration.Host.SourceGeneratorHost.d__4.MoveNext() in C:\projects\uno-sourcegeneration\src\Uno.SourceGenerationHost.Shared\SourceGeneratorHost.cs:line 303 MyApp.Droid
I already tried to change TestMe.csproj to
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
or
<TargetFrameworks>net47;netstandard2.0</TargetFrameworks>
without success.
Is there a workaround for this problem?