H.Uno.Templates 0.11.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package H.Uno.Templates --version 0.11.1
NuGet\Install-Package H.Uno.Templates -Version 0.11.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="H.Uno.Templates" Version="0.11.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add H.Uno.Templates --version 0.11.1
#r "nuget: H.Uno.Templates, 0.11.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install H.Uno.Templates as a Cake Addin
#addin nuget:?package=H.Uno.Templates&version=0.11.1

// Install H.Uno.Templates as a Cake Tool
#tool nuget:?package=H.Uno.Templates&version=0.11.1

Uno.Sdk

Nuget package dotnet License: MIT Discord

Easy configuration for Uno projects in 2 lines of code. Now is only there platforms are supported:

  • Mobile(macOS, MacCatalyst and Android)
  • Windows
  • WebAssembly
  • Skia.Gkt(net7.0-gtk)
  • Skia.Wpf(net7.0-windows)(still unsupported)
  • Skia.Linux.Framebuffer(net7.0-linux)
  • Skia.Tizen(net7.0-tizen)(still unsupported)

Usage

Here are three possible uses:

  • Use SDK via NuGet. A small hack will be used here to disable the error message about missing workloads for webassembly/linux/gtk.
<Project Sdk="H.Uno.Sdk/0.11.1">

    <PropertyGroup>
        <TargetFrameworks>net7.0-maccatalyst;net7.0-android;net7.0-ios;net7.0-gtk;net7.0-webassembly</TargetFrameworks>
        <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.0-windows10.0.19041.0</TargetFrameworks>
    </PropertyGroup>

</Project>
  • Use local SDK after installing workload
<Project Sdk="H.Uno.Sdk">

    <PropertyGroup>
        <TargetFrameworks>net7.0-maccatalyst;net7.0-android;net7.0-ios;net7.0-gtk;net7.0-webassembly</TargetFrameworks>
        <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.0-windows10.0.19041.0</TargetFrameworks>
    </PropertyGroup>

</Project>
  • Use via Microsoft.NET.Sdk and <UseUno>true</UseUno> after installing the workload (the most correct, but currently not supported due to the fact that WebAssembly requires Microsoft.NET.Sdk.Web which will not work with some target frameworks)
<Project Sdk="Microsoft.NET.Sdk">

    <PropertyGroup>
        <TargetFrameworks>net7.0-maccatalyst;net7.0-android;net7.0-ios;net7.0-gtk;net7.0-webassembly</TargetFrameworks>
        <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.0-windows10.0.19041.0</TargetFrameworks>
        <UseUno>true</UseUno> 
    </PropertyGroup>

</Project>

Fast start

You can use https://github.com/HavenDV/Uno.Sdk.Example/ as a start point or just use templates:

dotnet new install H.Uno.Templates # If you don't have installed workload
mkdir SingleProjectSolution
cd SingleProjectSolution
dotnet new uno
dotnet build
dotnet run --framework net7.0-gtk

Install workload

Although you don't have to do this, full support for the custom target framework requires installing the appropriate workload:

  • On Linux / macOS:
curl -sSL https://raw.githubusercontent.com/HavenDV/Uno.Sdk/main/scripts/workload-install.sh | sudo bash
  • On Windows:
Invoke-WebRequest 'https://raw.githubusercontent.com/HavenDV/Uno.Sdk/main/scripts/workload-install.ps1' -OutFile 'workload-install.ps1';
./workload-install.ps1

Uninstall

dotnet workload uninstall uno

Settings

The SDK is designed to assign default values only to properties that have not been explicitly set by the user. This way the user has full control over what the SDK does. Settings:

  • <UseUnoUwp>true</UseUnoUwp> - will use Uno.UI packages instead of Uno.WinUI.
  • <UnoVersion>5.0.0</UnoVersion (and other versions, see here) - will change the versions of all implicit PackageReferences

Disclaimer

Although this is a working solution, I have simplified some things regarding workload and manifest, which could theoretically cause problems (for example, when upgrading to a new sdk version).

Docs

Official documentation regarding the design of Workloads and Sdks:

Support

Priority place for bugs: https://github.com/HavenDV/Uno.Sdk/issues
Priority place for ideas and general questions: https://github.com/HavenDV/Uno.Sdk/discussions
Discord: https://discord.gg/g8u2t9dKgE

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.27.0 1,380 1/31/2024
0.26.0 1,868 11/27/2023
0.25.0 158 11/25/2023
0.24.0 213 11/23/2023
0.23.0 279 11/19/2023
0.22.0 212 11/15/2023
0.21.0 111 11/15/2023
0.20.0 440 11/3/2023
0.19.0 150 11/3/2023
0.18.0 790 10/11/2023
0.17.2 290 10/7/2023
0.17.1 170 10/7/2023
0.17.0 153 10/7/2023
0.16.0 176 10/7/2023
0.15.0 143 10/6/2023
0.14.0 163 10/6/2023
0.13.1 182 10/5/2023
0.13.0 155 10/5/2023
0.12.0 167 10/5/2023
0.11.1 160 10/5/2023
0.11.0 128 10/5/2023
0.10.0 207 10/3/2023
0.9.8 136 10/2/2023
0.9.7 169 10/2/2023
0.9.6 166 10/2/2023
0.9.5 154 10/2/2023
0.9.4 159 10/2/2023
0.9.3 176 10/2/2023
0.9.2 174 10/1/2023
0.9.1 130 10/1/2023
0.9.0 171 10/1/2023
0.8.4 220 9/30/2023
0.8.3 185 9/30/2023
0.8.2 146 9/29/2023
0.8.1 146 9/29/2023