maui/eng
dotnet-maestro[bot] 421571cd91
Update dependencies from https://github.com/dotnet/xharness build 20220419.1 (#6240)
Microsoft.DotNet.XHarness.CLI , Microsoft.DotNet.XHarness.TestRunners.Common , Microsoft.DotNet.XHarness.TestRunners.Xunit
 From Version 1.0.0-prerelease.22214.2 -> To Version 1.0.0-prerelease.22219.1

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
2022-04-19 19:09:14 +01:00
..
automation Add Microsoft.Maui.Graphics to the MAUI workload (#5577) 2022-03-29 14:46:21 +01:00
cake Support dotnet build with UseMauiCore (#6186) 2022-04-19 09:44:23 -04:00
common [ci] Add files from arcade 2022-02-08 23:58:41 +00:00
devices [Android] Update SecureStorage to use EncryptedSharedPreferences (#2807) 2021-11-17 12:20:08 -05:00
docs
pipelines Remove the hard Tizen dependency (#6172) 2022-04-18 02:14:21 +02:00
provisioning Fix some crashing tests (#5261) 2022-04-08 14:04:58 +01:00
scripts Remove the temporary patch (#3418) 2021-11-16 19:17:18 +00:00
AndroidX.targets [android] Update to latest AndroidX packages with better Trimmable support. (#5889) 2022-04-12 17:11:20 +01:00
BannedApis.targets Use Factory methods in DependencyInjection (#5290) 2022-03-15 09:43:29 -05:00
BannedSymbols.txt Use Factory methods in DependencyInjection (#5290) 2022-03-15 09:43:29 -05:00
Environment.Build.props [release/6.0.1xx-rc1] Update dependencies from xamarin/xamarin-android (#2369) 2021-09-03 12:39:53 -04:00
Git.Build.targets
Microsoft.Extensions.targets Adds Tizen backend (#2360) 2022-04-15 08:43:01 +00:00
Nuget.targets
README.md
ReplaceText.targets
SourceLink.Build.props
UWP.Build.props Specify the minimum versions of the platforms (#2905) 2021-10-20 10:41:34 -04:00
UWP.Build.targets
Version.Details.xml Update dependencies from https://github.com/dotnet/xharness build 20220419.1 (#6240) 2022-04-19 19:09:14 +01:00
Versions.dev.targets
Versions.props Update dependencies from https://github.com/dotnet/xharness build 20220419.1 (#6240) 2022-04-19 19:09:14 +01:00
Versions.targets
debug.keystore
microsoft.maui.controls.snk
package.ps1 [ci] Fix script for package 2022-02-22 20:16:58 +00:00

README.md

The eng folder contains and is used by parts of the https://github.com/dotnet/arcade SDK.

Dependency Management

The Arcade SDK contains a tool known as darc, which can be used to manage and query the relationships between repositories in the dotnet ecosystem.

The eng/Version.Details.xml and eng/Versions.props files contain information about the products and tooling that this repository depends on.

Many dotnet repositories use a publishing workflow that will push build artifact data to a central location known as the "Build Asset Registry". This data includes a "channel" association, which is used to determine when an update for a particular product or tool is available. Local updates and automatic update "subscriptions" compare the version files in the repository against the versions avalable in the channel that you are interested in. The darc tool is used facilitate these updates.

To work with darc locally, see the setting up your darc client docs. You'll need to run a script in the dotnet/arcade repo to install the dotnet global tool, join the arcade-contrib GitHub team, and run the darc authenticate command to add the PATs required by the tool.

The GitHub PAT that you add must have the full repo scope enabled if you want to work with any of the subcription commands. Subscriptions control the automated creation of dependency update pull requests.

To add a new dependency, run the darc add-dependency command at the root of the repository:

darc add-dependency -n Microsoft.Dotnet.Sdk.Internal -t product -v 6.0.0-preview.2.21154.6 -r https://github.com/dotnet/installer

To update all dependencies, use the darc update-dependencies command:

darc update-dependencies --channel ".NET 6"

To configure automatic updates, use the darc add-subscription command to enroll a target repo/branch into updates from a particular channel:

darc add-subscription --channel ".NET 6" --source-repo https://github.com/dotnet/installer --target-repo https://github.com/dotnet/maui --target-branch main --update-frequency everyWeek --standard-automerge

Once a subscription is configured, pull requests will be created automatically by the dotnet Maestro bot whenever dependency updates are available.

Subscriptions need to be manually managed at this time. For example, when a release branch is created, someone with darc installed locally will need to run the add-subscription command to configure updates against that new branch.