Fuse v.0.8.0 There is no identifier named 'App' accessible in this scope

I have

<App ClearColor="#000" ux:Class="MainView" ux:AutoCtor="false">
..rest...
</App>

But compiler says E3114: There is no identifier named ‘App’ accessible in this scope E8001: Data type not found: App E8001: Could not resolve type ‘App’ EUNKNOWN: Object reference not set to an instance of an object.

Should I add some package or what?

My project file contains:

{
"Packages": [
      "Fuse.Animations",
      "Fuse.BasicTheme",
      "Fuse.Controls",
      "Fuse.Designer",
      "Fuse.Drawing",
      "Fuse.Drawing.Primitives",
      "Fuse.Drawing.Batching",
      "Fuse.Effects",
      "Fuse.Elements",
      "Fuse.Entities",
      "Fuse.Gestures",
      "Fuse.Navigation",
      "Fuse.Shapes",
      "Fuse.Triggers",
      "Fuse.Reactive",
      "FuseCore",
      "Uno.Collections",
      "Uno.Geometry",
      "Experimental.Audio"
],
"Includes": [
  "*"
]

}

Hi Simo, please add the following references to you project: Fuse.Desktop, Fuse.Android, Fuse.iOS. We will make this a bit smoother very soon!

And if stuff ends up looking weird after rebuilding you may also want to add a Theme="Basic" to your <App> tag.

Works, thanks!