Ability to open shared projects in mobile app
Currently if you've shared a project with another person, you can't then edit it on the mobile app. This means you have to have to unshare each post before editing transitions etc. in the app
-
lewis hamilton
commented
Shared Projects let you write common code that is referenced by a number of different application projects. The code is compiled as part of each referencing project and can include compiler directives to help incorporate platform-specific functionality into the shared code base.
Shared Projects (also sometimes called Shared Asset Projects) let you write code that is shared between multiple target projects including Xamarin applications.
They support compiler directives so that you can conditionally include platform-specific code to be compiled into a subset of the projects that are referencing the Shared Project. There is also IDE support to help manage the compiler directives and visualize how the code will look in each application.
If you have used file-linking in the past to share code between projects, Shared Projects works in a similar way but with much improved IDE support.