Skip to content

Commit 4c91085

Browse files
Store final changes for step 'Validate that a .NET 10.0 SDK required for this upgrade is installed on the machine and if not, help to get it installed'
1 parent a5c311d commit 4c91085

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# .NET 10 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 CSharpNetStandardLib/CSharpNetStandardLib.csproj
10+
4. Upgrade ConsoleApp2/CSharpConsoleApp.csproj
11+
5. Upgrade ConsoleApp1/VisualBasicConsoleApp.vbproj
12+
13+
## Settings
14+
15+
### Project upgrade details
16+
17+
#### CSharpNetStandardLib/CSharpNetStandardLib.csproj modifications
18+
19+
Project properties changes:
20+
- Target framework should be changed from `netstandard2.0` to `net10.0`
21+
22+
#### ConsoleApp2/CSharpConsoleApp.csproj modifications
23+
24+
Project file needs to be converted to SDK-style format.
25+
26+
Project properties changes:
27+
- Target framework should be changed from `.NETFramework,Version=v4.8` to `net10.0`
28+
29+
#### ConsoleApp1/VisualBasicConsoleApp.vbproj modifications
30+
31+
Project file needs to be converted to SDK-style format.
32+
33+
Project properties changes:
34+
- Target framework should be changed from `.NETFramework,Version=v4.8` to `net10.0`

0 commit comments

Comments
 (0)