Create an empty Android application from the F # template in Visual Studio.
Add the Xamarin.Forms NuGet package.
Create a project.
Build failed due to this line in Resource.Designer.fs
:
static member end = 2131165212
Since end
is a keyword in F #, the error reads the "Final value" of the unexpected keyword "in member definition".
There is a fix: you can replace end
as follows:
static member ``end`` = 2131165212
However, Resource.Designer.fs
is a generated file, so I must continue to do so.
How is this file created? How can I make an extraction request to fix this error?
source share