The dotnet10.0 package
Find a file
Omair Majid ae4e86a8b7 Update to .NET 10 RC 2
Update to .NET SDK 10.0.100-rc.2.25502.107 and Runtime
10.0.0-rc.2.25502.10.
2025-11-20 08:15:07 -05:00
.fmf Migrate from STI to tmt 2023-03-01 14:01:10 -05:00
tests Initial port to .NET 10 2024-12-17 16:27:03 -05:00
.gitignore Update to .NET 10 RC 2 2025-11-20 08:15:07 -05:00
build-dotnet-bootstrap-tarball Update to .NET 10 Preview 5 2025-07-01 09:48:25 -04:00
build-prebuilt-archive Update to .NET 10 Preview 5 2025-07-01 09:48:25 -04:00
check-bundled-versions Address package review feedback 2025-09-30 12:13:32 -04:00
check-debug-symbols.py Update to upstream e48b2112b5b536efb5c97188b6fd778fc55ff3d6 2024-07-03 16:38:08 -04:00
copr-build Initial port to .NET 10 2024-12-17 16:27:03 -05:00
dotnet.sh.in Initial import (#1802803) 2020-02-20 20:23:21 -05:00
dotnet10.0.spec Update to .NET 10 RC 2 2025-11-20 08:15:07 -05:00
gating.yaml Update to .NET SDK 8.0.100 Preview 7 and Runtime 8.0.0 Preview 7 2023-08-14 10:12:49 -04:00
macros.dotnet Add macros.dotnet 2024-09-07 09:37:16 -04:00
README.md Merge remote branch 'dotnet-sig/main' 2025-10-01 17:29:12 -04:00
release-key-2023.asc Enable gpg signature verification 2023-12-12 14:58:09 -05:00
release.json Update to .NET 10 RC 2 2025-11-20 08:15:07 -05:00
rpminspect.yaml Add various fixes from CentOS Stream 9 2023-12-08 08:58:16 -05:00
runtime-119706-clang-21.patch Update to .NET 10 RC 1 2025-09-19 12:17:40 -04:00
runtime-disable-fortify-on-ilasm-parser.patch Update to .NET SDK 9.0.100-preview.4.24267.1 and Runtime 9.0.0-preview.4.24266.19 2024-06-03 11:34:42 -04:00
runtime-openssl-sha1.patch Update to .NET 9 Preview 7 2024-08-27 14:24:59 -04:00
runtime-re-enable-implicit-rejection.patch Update to .NET SDK 9 preview 2 and Runtime 9 preview 2 2024-03-17 07:11:04 -04:00
sources Update to .NET 10 RC 2 2025-11-20 08:15:07 -05:00
update-release Update to .NET 10 RC 2 2025-11-20 08:15:07 -05:00

dotnet10.0

The dotnet10.0 package. This is the .NET 10.0 package for Fedora.

This package is maintained by the Fedora DotNet SIG (Special Interest Group). You can find out more about the DotNet SIG at:

Please report any issues using bugzilla.

Specification

This package follows package naming and contents suggested by upstream, with one exception. It installs dotnet to /usr/lib64/dotnet (aka %{_libdir}).

Contributing

The steps below are for the final package. Please only contribute to this pre-release version this if you know what you are doing. Original instructions follow.

General Changes

  1. Fork the repo.

  2. Checkout the forked repository.

    • git clone ssh://$USER@pkgs.fedoraproject.org/forks/$USER/rpms/dotnet10.0.git
    • cd dotnet10.0
  3. Make your changes. Don't forget to add a changelog.

  4. Do local builds.

    • fedpkg local
  5. Fix any errors that come up and rebuild until it works locally.

  6. Do builds in koji.

    • fedpkg scratch-build --srpm
  7. Commit the changes to the git repo.

    • git add any new patches
    • git remove any now-unnecessary patches
    • git commit -a
    • git push
  8. Create a pull request with your changes.

  9. Once the tests in the pull-request pass, and reviewers are happy, do a real build.

    • fedpkg build
  10. For non-rawhide releases, file updates using bodhi to ship the just-built package out to users.

    OR

    • fedpkg update

Updating to an new upstream release

  1. Fork the repo.

  2. Checkout the forked repository.

    • git clone ssh://$USER@pkgs.fedoraproject.org/forks/$USER/rpms/dotnet10.0.git
    • cd dotnet10.0
  3. Build the new upstream source tarball. Update the versions in the spec file. Add a changelog. This is generally automated by the following.

    • ./update-release <sdk-version> <runtime-version>

    If this fails because of compiler errors, you might have to figure out a fix, then add the patch in build-dotnet-tarball script rather than the spec file.

  4. Do local builds.

    • fedpkg local
  5. Fix any errors that come up and rebuild until it works locally. Any patches that are needed at this point should be added to the spec file.

  6. Do builds in koji.

    • fedpkg scratch-build --srpm
  7. Upload the source archive to the Fedora look-aside cache.

    • fedpkg new-sources path-to-generated-dotnet-source-tarball.tar.gz
  8. Commit the changes to the git repo.

    • git add any new patches
    • git remove any now-unnecessary patches
    • git commit -a
    • git push
  9. Create a pull request with your changes.

  10. Once the tests in the pull-request pass, and reviewers are happy, do a real build.

    • fedpkg build
  11. For non-rawhide releases, file updates using bodhi to ship the just-built package out to users.

    OR

    • fedpkg update

Testing

This package uses CI tests as defined in tests/ci.yml. You can run them using tmt. Creating a pull-request or running an official build will fire off tests and flag any issues. We have enabled gating (via gating.yaml) on the tests. That prevents a build that fails any test from being released until the failures are waived.

The tests themselves are contained in this external repository: https://github.com/redhat-developer/dotnet-regular-tests/