Is there a way to start a Xamarin UWP project without deployment every time

Do I always need to click to deploy a UWP application before launching it? These are two steps, and I would like to complete only one.

I just created the Blank Xaml project (Xamarin.Forms Portable) A new project from the list of cross-platform, Windows, Visual C # templates in the Visual Studio 2015 update 2. There are projects for Droid, iOS and UWP (Universal Windows), as well as several others. I installed the UWP application as a startup project and tried to start it (by clicking the green arrow on my local computer or pressing F5), but I received an error message in which I needed to deploy first. If I right-click the project and then decide to deploy it, it will run successfully, and then if I run it, it will run successfully. If I stop execution, make changes, and then start again, I do not see the changes. If I turn around again and then run, I will see my changes.

I'm trying to just make sure that my user interface looks as it should, and therefore everything that helps me iterate between code changes and see that these changes on any platform would be useful. The droid will start up forever, and I cannot start iOS (without a Mac) or Windows 8.1 (I am at home in Windows 10), so I am testing UWP first. Is there a better way than right-clicking a project to deploy each time before running a run?

+7
visual-studio-2015 uwp xamarin windows-10-universal
source share
1 answer

Open the "Create Assembly" menu → select the configuration manager, go to the UWP project, select the build and deployment option .. it will automatically unlock by default disable this option

+11
source share

All Articles