Hello,
I'm having an issue with an error that I cannot find any information about online. I recently converted my Developer Preview over into the Consumer Preview and I am now getting an error saying 'XamlCompiler error WMC1002: x:Class type 'Project.App' is not
found as a public type in the build binary'
My definition of 'Project.App' is as follows:
namespace DragonsLair
{
public ref class App sealed
{
public:
App();
~App();
virtual void OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ pArgs);
};
}
The error is being thrown in my App.xaml file at this line:
<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="DragonsLair.App" /
Does anyone know why I am encountering this error? Thanks.