.NET Version Upgrade Help #157614
-
BodyHi everyone, I am a .NET Developer and am working on .NET Core Backend Project Best, Guidelines
|
BetaWas this translation helpful?Give feedback.
Replies: 1 comment 1 reply
-
Hi Fun-Minion, I actually has similar issue awhile back, I went searching through some of the docs i had that helped me sort it out, Admittedly i'm doing a little of this from memory... Hop it helps :) 1: Verify TeamCity Configuration Ensure that TeamCity agents have the .NET 8 SDK installed: 2: Check TeamCity Build Steps
Example: 3: Update NuGet Restore Step
To force clear previous caches, consider: 4: Confirm TeamCity Tools Path
5: Clean and Rebuild
6: Check for Breaking Changes 7: Inspect Build Logs for Specific Errors Review TeamCity build logs carefully: Common issues include:
8: Update TeamCity Agent Ensure your TeamCity server and agent are updated to the latest version for complete .NET 8 support. These were some old notes, as i said hopefully they help a little |
BetaWas this translation helpful?Give feedback.
Hi Fun-Minion,
I actually has similar issue awhile back, I went searching through some of the docs i had that helped me sort it out, Admittedly i'm doing a little of this from memory... Hop it helps :)
1: Verify TeamCity Configuration
Ensure that TeamCity agents have the .NET 8 SDK installed:
On the TeamCity Agent, run:
dotnet --list-sdksIf .NET 8 SDK is missing, install it from: https://dotnet.microsoft.com/download/dotnet/8.0
2: Check TeamCity Build Steps
Ensure your TeamCity build steps explicitly use .NET 8:
Example:
dotnet publish MyP…