How to fix the generator for Resource.Designer.fs so that it avoids language words?

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?

+6
source share

Source: https://habr.com/ru/post/1012427/


All Articles