You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/project-docs/developer-guide.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,9 +34,9 @@ As part of the build, some intermediate files will get generated which may run i
34
34
35
35
#### Using Visual Studio
36
36
37
-
The simple way to launch Visual Studio after building via `build.cmd` is to double-click the `VS with sdk.sln` Windows shortcut in the `artifacts` folder. This will load the generated environment automatically and launch Visual Studio with the `sdk.sln` solution.
37
+
The simple way to launch Visual Studio after building via `build.cmd` is to double-click the `VS with sdk.slnx` Windows shortcut in the `artifacts` folder. This will load the generated environment automatically and launch Visual Studio with the `sdk.slnx` solution.
38
38
39
-
Alternatively, to open the solution in Visual Studio, be sure to build with `build.cmd` and run the generated environment for your shell. If you're using `cmd`, then run `artifacts\sdk-build-env.bat`. If you're using PowerShell, you need to 'dot source' `artifacts/sdk-build-env.ps1`. Finally, open Visual Studio with `devenv sdk.sln`.
39
+
Alternatively, to open the solution in Visual Studio, be sure to build with `build.cmd` and run the generated environment for your shell. If you're using `cmd`, then run `artifacts\sdk-build-env.bat`. If you're using PowerShell, you need to 'dot source' `artifacts/sdk-build-env.ps1`. Finally, open Visual Studio with `devenv sdk.slnx`.
40
40
41
41
In addition, Visual Studio must have the following option set (this option is automatically set in preview Visual Studio builds):
42
42
@@ -79,7 +79,7 @@ Run the following command from the root of the repository to run all the .NET Co
79
79
80
80
The `dotnet` executable in the artifacts directory can be run directly.
81
81
82
-
However, it's easier to configure a test environment to run the built `dotnet`. This test environment is managed by dogfood.
82
+
However, it's easier to configure a test environment to run the built `dotnet`. This test environment is managed by dogfood.
83
83
The dogfood script starts a new Powershell with the environment configured to redirect SDK resolution to your build.
84
84
85
85
From that shell your SDK will be available in:
@@ -146,7 +146,7 @@ Use developer command prompt for Visual Studio or put devenv on you PATH
146
146
```shell
147
147
build.cmd # to have a full build first
148
148
.\artifacts\sdk-build-env.bat
149
-
devenv sdk.sln
149
+
devenv sdk.slnx
150
150
```
151
151
152
152
Note again that in Visual studio "Use previews of the .NET SDK (requires restart)" must be checked. See the above comment for how to enable this.
0 commit comments