|
| 1 | +# .NET 10.0 Upgrade Plan |
| 2 | + |
| 3 | +## Execution Steps |
| 4 | + |
| 5 | +Execute steps below sequentially one by one in the order they are listed. |
| 6 | + |
| 7 | +1. Validate that a .NET 10.0 SDK required for this upgrade is installed on the machine and if not, help to get it installed. |
| 8 | +2. Ensure that the SDK version specified in global.json files is compatible with the .NET 10.0 upgrade. |
| 9 | +3. Upgrade src\DotnetPackaging\DotnetPackaging.csproj |
| 10 | +4. Upgrade src\DotnetPackaging.Deb\DotnetPackaging.Deb.csproj |
| 11 | +5. Upgrade src\DotnetPackaging.Exe\DotnetPackaging.Exe.csproj |
| 12 | +6. Upgrade src\DotnetPackaging.Exe.Installer\DotnetPackaging.Exe.Installer.csproj |
| 13 | +7. Upgrade src\DotnetPackaging.Msix\DotnetPackaging.Msix.csproj |
| 14 | +8. Upgrade src\DotnetPackaging.Dmg\DotnetPackaging.Dmg.csproj |
| 15 | +9. Upgrade src\DotnetPackaging.AppImage\DotnetPackaging.AppImage.csproj |
| 16 | +10. Upgrade src\DotnetPackaging.Rpm\DotnetPackaging.Rpm.csproj |
| 17 | +11. Upgrade src\DotnetPackaging.Flatpak\DotnetPackaging.Flatpak.csproj |
| 18 | +12. Upgrade test\DotnetPackaging.Exe.Tests\DotnetPackaging.Exe.Tests.csproj |
| 19 | +13. Upgrade test\DotnetPackaging.Msix.Tests\DotnetPackaging.Msix.Tests.csproj |
| 20 | +14. Upgrade test\DotnetPackaging.Dmg.Tests\DotnetPackaging.Dmg.Tests.csproj |
| 21 | +15. Upgrade test\DotnetPackaging.AppImage.Tests\DotnetPackaging.AppImage.Tests.csproj |
| 22 | +16. Upgrade test\DotnetPackaging.Flatpak.Tests\DotnetPackaging.Flatpak.Tests.csproj |
| 23 | +17. Upgrade src\DotnetPackaging.Tool\DotnetPackaging.Tool.csproj |
| 24 | + |
| 25 | +## Settings |
| 26 | + |
| 27 | +This section contains settings and data used by execution steps. |
| 28 | + |
| 29 | +### Project upgrade details |
| 30 | + |
| 31 | +This section contains details about each project upgrade and modifications that need to be done in the project. |
| 32 | + |
| 33 | +#### src\DotnetPackaging\DotnetPackaging.csproj modifications |
| 34 | + |
| 35 | +Project properties changes: |
| 36 | + - Target framework should be changed from `net8.0` to `net10.0` |
| 37 | + |
| 38 | +#### src\DotnetPackaging.Deb\DotnetPackaging.Deb.csproj modifications |
| 39 | + |
| 40 | +Project properties changes: |
| 41 | + - Target framework should be changed from `net8.0` to `net10.0` |
| 42 | + |
| 43 | +#### src\DotnetPackaging.Exe\DotnetPackaging.Exe.csproj modifications |
| 44 | + |
| 45 | +Project properties changes: |
| 46 | + - Target framework should be changed from `net8.0` to `net10.0` |
| 47 | + |
| 48 | +#### src\DotnetPackaging.Exe.Installer\DotnetPackaging.Exe.Installer.csproj modifications |
| 49 | + |
| 50 | +Project properties changes: |
| 51 | + - Target framework should be changed from `net8.0-windows` to `net10.0-windows` |
| 52 | + |
| 53 | +#### src\DotnetPackaging.Msix\DotnetPackaging.Msix.csproj modifications |
| 54 | + |
| 55 | +Project properties changes: |
| 56 | + - Target framework should be changed from `net8.0` to `net10.0` |
| 57 | + |
| 58 | +#### src\DotnetPackaging.Dmg\DotnetPackaging.Dmg.csproj modifications |
| 59 | + |
| 60 | +Project properties changes: |
| 61 | + - Target framework should be changed from `net8.0` to `net10.0` |
| 62 | + |
| 63 | +#### src\DotnetPackaging.AppImage\DotnetPackaging.AppImage.csproj modifications |
| 64 | + |
| 65 | +Project properties changes: |
| 66 | + - Target framework should be changed from `net8.0` to `net10.0` |
| 67 | + |
| 68 | +#### src\DotnetPackaging.Rpm\DotnetPackaging.Rpm.csproj modifications |
| 69 | + |
| 70 | +Project properties changes: |
| 71 | + - Target framework should be changed from `net8.0` to `net10.0` |
| 72 | + |
| 73 | +#### src\DotnetPackaging.Flatpak\DotnetPackaging.Flatpak.csproj modifications |
| 74 | + |
| 75 | +Project properties changes: |
| 76 | + - Target framework should be changed from `net8.0` to `net10.0` |
| 77 | + |
| 78 | +#### test\DotnetPackaging.Exe.Tests\DotnetPackaging.Exe.Tests.csproj modifications |
| 79 | + |
| 80 | +Project properties changes: |
| 81 | + - Target framework should be changed from `net8.0-windows` to `net10.0-windows` |
| 82 | + |
| 83 | +#### test\DotnetPackaging.Msix.Tests\DotnetPackaging.Msix.Tests.csproj modifications |
| 84 | + |
| 85 | +Project properties changes: |
| 86 | + - Target framework should be changed from `net8.0` to `net10.0` |
| 87 | + |
| 88 | +#### test\DotnetPackaging.Dmg.Tests\DotnetPackaging.Dmg.Tests.csproj modifications |
| 89 | + |
| 90 | +Project properties changes: |
| 91 | + - Target framework should be changed from `net8.0` to `net10.0` |
| 92 | + |
| 93 | +#### test\DotnetPackaging.AppImage.Tests\DotnetPackaging.AppImage.Tests.csproj modifications |
| 94 | + |
| 95 | +Project properties changes: |
| 96 | + - Target framework should be changed from `net9.0` to `net10.0` |
| 97 | + |
| 98 | +#### test\DotnetPackaging.Flatpak.Tests\DotnetPackaging.Flatpak.Tests.csproj modifications |
| 99 | + |
| 100 | +Project properties changes: |
| 101 | + - Target framework should be changed from `net9.0` to `net10.0` |
| 102 | + |
| 103 | +#### src\DotnetPackaging.Tool\DotnetPackaging.Tool.csproj modifications |
| 104 | + |
| 105 | +Project properties changes: |
| 106 | + - Target framework should be changed from `net8.0` to `net10.0` |
0 commit comments