I'm having an issue with Xamarin.iOS projects in Visual Studio 2019. Any time I:
Some or all of the Assets.xcassets folder contents become unincluded. Sometimes, git diff shows that a new node is created underneath the asset nodes: <Visible>false</Visible>
. Other times, no pending change is recorded at all.
As you might guess, this is EXTREMELY annoying and is making Xamarin unusable for future iOS development.
Is there any fix for this?
Assets.xcassets
is always unincluded in my iOS project. We use the asset in the Asset Catalogs:
Define the single image asset there. We can consume it directly after saving operation.
Answers
Assets.xcassets
is always unincluded in my iOS project. We use the asset in the Asset Catalogs:Define the single image asset there. We can consume it directly after saving operation.
@LandLu, you are correct. I thought that leaving the assets folder unincluded made Application Loader throw errors, but it does not. So, I guess no problems with leaving the folders unincluded.