From 25315855595da6d722a6f178a13a2cdcf62ff814 Mon Sep 17 00:00:00 2001 From: Jerome Laban Date: Tue, 15 Oct 2019 14:37:59 -0400 Subject: [PATCH] Update readme.md --- readme.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/readme.md b/readme.md index 00c5afe..a7d08f7 100644 --- a/readme.md +++ b/readme.md @@ -13,14 +13,13 @@ The `Uno.SourceGeneratorTasks` support updating generators on the fly, making it The `Uno.SourceGeneratorTasks` support any target framework for code generation, though there are limitations when [using a mixed targetframeworks graph](https://github.com/dotnet/roslyn/issues/23114), such as generating code in a `net47` project that references a `netstandard2.0` project. In such cases, prefer adding a `net47` target instead of targeting `netstandard2.0`. -Visual Studio 2017 15.3+ for Windows, macOS and Linux builds are supported. +Visual Studio 2017 15.3+ for Windows, macOS and Linux builds are supported. Building for .NET Core requires .NET 3.0.100 or later. ## Build status -| Target | Branch | Status | Build output (artifacts) | -| ------ | ------ | ------ | ----- | -| development | master |[![Build status](https://ci.appveyor.com/api/projects/status/0jsq4wg0ce7a5rqu/branch/master?svg=true)](https://ci.appveyor.com/project/nventivedevops/uno-sourcegeneration/branch/master)
![Build Stats](https://buildstats.info/appveyor/chart/nventivedevops/uno-sourcegeneration?branch=master&includeBuildsFromPullRequest=false) | [Appveyor - master](https://ci.appveyor.com/project/nventivedevops/uno-sourcegeneration/branch/master/artifacts) -| stable | stable |[![Build status](https://ci.appveyor.com/api/projects/status/0jsq4wg0ce7a5rqu/branch/stable?svg=true)](https://ci.appveyor.com/project/nventivedevops/uno-sourcegeneration/branch/stable)
![Build Stats](https://buildstats.info/appveyor/chart/nventivedevops/uno-sourcegeneration?branch=stable&includeBuildsFromPullRequest=false) | [Appveyor - stable](https://ci.appveyor.com/project/nventivedevops/uno-sourcegeneration/branch/stable/artifacts) +| Target | Branch | Status | +| ------ | ------ | ------ | +| development | master |[![Build Status](https://dev.azure.com/uno-platform/Uno%20Platform/_apis/build/status/Uno%20Platform/Uno.SourceGeneration%20CI?branchName=master)](https://dev.azure.com/uno-platform/Uno%20Platform/_build/latest?definitionId=32&branchName=master) ## Nuget Packages @@ -29,6 +28,8 @@ Visual Studio 2017 15.3+ for Windows, macOS and Linux builds are supported. | `Uno.SourceGeneration` | [![NuGet](https://img.shields.io/nuget/v/Uno.SourceGeneration.svg)](https://www.nuget.org/packages/Uno.SourceGeneration/) | Use this package to create a generator | | `Uno.SourceGenerationTasks` | [![NuGet](https://img.shields.io/nuget/v/Uno.SourceGenerationTasks.svg)](https://www.nuget.org/packages/Uno.SourceGenerationTasks/) | Use this package to use a generator | +Experimental packages are available through this NuGet feed: https://pkgs.dev.azure.com/uno-platform/Uno%20Platform/_packaging/unoplatformdev/nuget/v3/index.json + ## Creating a Source Generator 1. In Visual Studio 2017, create a **.NET Standard Class Library** project named `MyGenerator`