You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
775 B

7 years ago
7 years ago
7 years ago
  1. # eShopOnContainers - BRANCH GUIDE
  2. Following are the most important branches:
  3. - `dev`: Contains the latest code **and it is the branch actively developed**. Note that **all PRs must be against the `dev` branch to be considered**. This branch is developed using `.NET 6`
  4. - `release/net-5`: Contains the code changes specific to the `.NET 5`
  5. - `release/net-3.1.1`: Contains the code changes specific to the `.NET 3.1`
  6. > [!DISCLAIMER]: The `main` branch contains the old code base and will get obsolete in the future. So it's recommended to refer to different [tags](https://github.com/dotnet-architecture/eShopOnContainers/tags) to avoid any confusion.
  7. Any other branch is considered temporary and could be deleted at any time. Do not submit any PR against them!
  8. Thanks!