- I have tried migrating existing forms project to MAUI
- I have used .NET Upgrade Assistant dotnet tool and ran these commands
dotnet tool update --global upgrade-assistant
upgrade-assistant upgrade <path to sln or csproj> --non-interactive --entry-point *
- Later Forms Namespaces and target framework are updated to MAUI in Main library and I have manually fixed few design issues related to compiled bindings, android and iOS namespace errors in respective platforms.
But still i am getting these errors and there is no file called colors.xml in the resources
Errors :
Resources\values\colors.xml(2): error APT2168: <item> must have a 'type' attribute.
APT2000 expected reference but got (raw string) #000000.
Resources\values\colors.xml : error APT2261: file failed to compile.
Anyone have any idea about these issues?
Thanks in advance