-
Notifications
You must be signed in to change notification settings - Fork 16
Preprocessed xaml files aren't used with Visual Studio 2017 #17
Comments
I had the same problem and after I upgraded to the following setup, it works:
|
starting to see this error after upgrading to VS 2017 (15.3) and changing project to .netstandard project. |
After updating to netstandard2.0, xcc does not longer work. |
I was stuck on this issue as well, and finally stumbled upon a solution in this Xamarin Forms bug post You need to add an Full snippet below: [assembly: XamlCompilation(XamlCompilationOptions.Compile)]
namespace MyApp.Shared
{
public class CoreApp : Application { I have no idea how to resolve this issue for XAML files that are not being precompiled unfortunately. |
Hi Team, I am facing the same issue after upgrading to visual studio 2017, Xamarin 3.6, .NetStandard 2.0. XCC is not working with above configuration. The solution mentioned by "cswendrowski" is also not working. Could you please provide the alternate solution as well as let us know is there any plan to update the nuget with support in .netstandard. |
@Sumaiya786 you don't need this Nuget any more. Remove it from your solution, and apply xaml compilation on the whole assembly. |
I can clearly see that
obj/Debug/preprocessedxaml
contains files with proper changes, but for some reason I still getMarkupExtension not found for d:DesignInstance
error.The text was updated successfully, but these errors were encountered: