Replies: 2 comments 2 replies
-
@tutkus thank you for posting this. We have had a few people that have reported the same issue and we have resolved it via comments on those issues but this should hopefully make it easier for people to discover. We could possibly look to include it in the |
Beta Was this translation helpful? Give feedback.
2 replies
-
Closed as answered |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi All,
That's first time when I was trying to built a solution.
All projects except CommunityToolkit.Maui.UnitTests and CommunityToolkit.Maui.Sample were built without error however for these two I had an below:
Checking it a bit deeper I figured out that the problem is with my Windows10 workstation. To be more specyfic it was related to LongPath which by default is disabled so in my cases becasue MAUI project were put a bit deeper in the project structure I had that issue.
The solution for that issue is quite strightforward.
The LongPath fetaure in Windows 10 has to be enabled by adding the right registry key (if that is not present yet): More details here -> https://docs.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation?tabs=cmd
After that step the only what's left is to restart the system and build project. In my case that solved the problem.
And now the most important:
I think it would be good to put that tips for other devs which might have the same problem like me.
Maybe it would be good to have a section in the Wiki where that kind of tips could be pointed so everyone could easy check and find a solution.
Beta Was this translation helpful? Give feedback.
All reactions