maui-linux/eng
Jonathan Dick 50cbb20cc1
Update SignList.xml
2022-01-16 17:30:54 -05:00
..
automation Update SignList.xml 2022-01-16 17:30:54 -05:00
cake Move versions to Versions.props and Build WASDK (#3557) 2021-11-26 17:41:52 +02:00
devices [Android] Update SecureStorage to use EncryptedSharedPreferences (#2807) 2021-11-17 12:20:08 -05:00
docs Project restructure (#12238) 2020-09-30 11:31:20 -05:00
pipelines [main] Update dependencies from xamarin/xamarin-macios (#4006) 2022-01-10 15:21:16 -05:00
provisioning Bump JDK to JDK 11 (#3674) 2021-12-07 14:05:25 +00:00
scripts Remove the temporary patch (#3418) 2021-11-16 19:17:18 +00:00
AndroidX.targets [AndroidX.targets] Bump to net6.0-android31.0 AndroidX packages. (#2810) 2021-11-30 23:24:15 +00: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 [Build] Fix GitInfo usage to calculate version (#501) 2021-03-12 23:37:31 +00:00
Microsoft.Extensions.targets Move versions to Versions.props and Build WASDK (#3557) 2021-11-26 17:41:52 +02:00
Nuget.targets Project restructure (#12238) 2020-09-30 11:31:20 -05:00
README.md [build] Use arcade dependency management (#729) 2021-04-15 19:49:21 +01:00
ReplaceText.targets .NET MAUI is now a "workload" (#603) 2021-06-16 17:59:53 +01:00
SourceLink.Build.props Project restructure (#12238) 2020-09-30 11:31:20 -05:00
UWP.Build.props Specify the minimum versions of the platforms (#2905) 2021-10-20 10:41:34 -04:00
UWP.Build.targets Convert UAP Platform Head to use WinUI 3 Desktop (#13584) 2021-02-11 18:09:28 +00:00
Version.Details.xml [main] Update dependencies from xamarin/xamarin-macios (#4056) 2022-01-15 22:07:45 -05:00
Versions.dev.targets [build] fix local 'dotnet cake' builds (#2234) 2021-08-25 14:15:02 +01:00
Versions.props [main] Update dependencies from xamarin/xamarin-macios (#4056) 2022-01-15 22:07:45 -05:00
Versions.targets [CI] Add NuGet MSI conversion and VS insert stage (#1618) 2021-07-27 16:21:49 +02:00
debug.keystore Fix readme language and Remove non functional bits (#12333) 2020-10-02 10:33:09 -05:00
microsoft.maui.controls.snk Rename all of the things... All of them. (#13847) 2021-02-24 23:50:31 +00:00
package.ps1 Merge all the .NET 6 projects/solutions (#2505) 2021-09-17 14:21:02 -05: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.