Merge pull request #11128 from dotnet/marcpopMSFT-addmauiworkloadfeed

add maui workload feed
This commit is contained in:
Marc Paine 2021-07-21 14:33:15 -07:00 committed by GitHub
commit 058ad5c832
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -63,6 +63,18 @@ With development builds, internal NuGet feeds are necessary for some scenarios (
```
**Note:** that you may need to add the dotnet5 feed for a short period of time while .NET transitions to .NET 6
**For .NET 6 Optional workloads**
We strongly recommend using `--skip-manifest-update` with `dotnet workload install` as otherwise you could pick up a random build of various workloads as we'll automatically update to the newest one available on the feed.
```
<configuration>
<packageSources>
<add key="maui" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/xamarin-impl/nuget/v3/index.json" />
</packageSources>
</configuration>
```
**For .NET 5 builds**
```