0
My dear,
When I try to run the environment test program available in the course I’m getting the bugs :
Error Build action 'Embeddedresource' is not supported by one or more of the project’s targets. Enviar correo.Forms C: Users Dennisaraujo Documents Study Informatica\xamarin\xamarin-ambiente-teste-master\xamarin-ambiente-teste-master\EjercicioBase\EnviarCorreo.Forms\EnviarCorreo.Forms\Views\MainPage.xaml
This project Nuget package(s) that are Missing on this computer. Use Nuget Package Restore
Windows 10 home Microsoft Visual Studio Community 2015 Version 14.0.25431.01 Update 3 jdk 1.8.0_101 Xamarin update on time
I suggest improving the quality of your question to get better answers. For example, code your application. Learn more about MCVE.
– Marcus Martins
@Valdrez, you tried to right click on the project root and right click on Restore Nuget Packages ?
– Junior Porfirio
Junior, yes I tried to do the Nuget Store and when I do Build I get the mentioned error. I participated in the Xamarin marathon and a project was made available to test the environment, I did not change anything. Follow the code that presents the errors.
– Valdrez
Follow the code that shows the errors. App.xaml -> using System; using System.Collections.Generic; using System.Linq; using System.Text; using Xamarin.Forms; namespace Enviar correo.Forms { public partial class App : Application { public App() { Initializecomponent(); Mainpage = new Enviar correo.Forms.Mainpage(); } protected override void Onstart() { } protected override void Onsleep() { } { } } }
– Valdrez
Take a look at this answer: http://stackoverflow.com/questions/37111423/build-action-embeddedresource-is-not-supported-by-one-or-more-of-the-projects
– rubStackOverflow