Creating an app with VS Code

Note

Make sure to setup your environment by following our instructions.

Create the App

In a terminal, type the following to create a new project using dotnet new templates:

dotnet new unoapp -o MyApp --preset=blank -platforms android ios maccatalyst wasm gtk --vscode
Tip

MyApp is the name you want to give to your project.

This will create a blank template app that only contains the WebAssembly, Skia+GTK and Mobile platforms support.

Important

Apple targets cannot be built under Linux. If you are using Linux, you'll need to remove ios and maccatalyst from the platforms list. The previous command would become dotnet new unoapp -o MyApp -preset=blank -platforms wasm gtk android --vscode.

Next, open the project using Visual Studio Code:

  • In the terminal type the following:

    code ./MyApp
    
  • Visual Studio Code might ask to restore the NuGet packages. Allow it to restore them if asked.

  • Once the project has been loaded, in the status bar at the bottom left of VS Code, MyApp.sln is selected by default. Select MyApp.Wasm.csproj, MyApp.Skia.Gtk.csproj or MyApp.Mobile.csproj instead.

Debug the App

Uno Platform provides integrated support for debugging your app on Windows, mac and Linux.

  1. In the debugger section of the activity bar select Debug (Chrome, WebAssembly)
  2. In the status bar, ensure the MyApp.Wasm.csproj project is selected - by default MyApp.sln is selected.
  3. Press F5 to start the debugging session

You're all set!

You can also find additional VS Code topics, such as using snippets, updating existing apps to use VS Code

Next Steps

Now that you're Created and Debug the App.

Learn more about: