Skip to content
代码片段 群组 项目
未验证 提交 46fafcd1 编辑于 作者: Pavel Savara's avatar Pavel Savara 提交者: GitHub
浏览文件

VS 17 instalation (#38592)

上级 3bf44165
No related branches found
No related tags found
无相关合并请求
...@@ -90,7 +90,7 @@ Visual Studio 2019 (16.10 Preview 3) is required to build the repo locally. If y ...@@ -90,7 +90,7 @@ Visual Studio 2019 (16.10 Preview 3) is required to build the repo locally. If y
The [global.json](/global.json) file specifies the minimum requirements needed to build using `msbuild`. The [eng/scripts/vs.16.json](/eng/scripts/vs.16.json) file provides a description of the components needed to build within VS. If you plan on developing in Visual Studio, you will need to have these components installed. The [global.json](/global.json) file specifies the minimum requirements needed to build using `msbuild`. The [eng/scripts/vs.16.json](/eng/scripts/vs.16.json) file provides a description of the components needed to build within VS. If you plan on developing in Visual Studio, you will need to have these components installed.
> :bulb: The `InstallVisualStudio.ps1` script mentioned above reads from the `vs.16.json` file to determine what components to install. > :bulb: The `InstallVisualStudio.ps1` script mentioned above reads from the `vs.17.json` file to determine what components to install.
#### [Git](https://git-scm.org) on Windows #### [Git](https://git-scm.org) on Windows
...@@ -286,7 +286,7 @@ code . ...@@ -286,7 +286,7 @@ code .
> in `~/.vscode-server/server-env-setup`. > in `~/.vscode-server/server-env-setup`.
> See <https://code.visualstudio.com/docs/remote/wsl#_advanced-environment-setup-script> for details. > See <https://code.visualstudio.com/docs/remote/wsl#_advanced-environment-setup-script> for details.
In Visual Studio Code, press `CTRL + SHIFT + P` (`CMD + SHIFT + P` on mac) to open command palette, then search and select for `Run Tasks` option. In task list, there are couple of most used tasks are already defined, in that you can select `Build entire repository` option from it to build the repository. Once you select that option, on next window you need to select configuration type from `Debug` OR `Release`. For development purpose one can go with `Debug` option and for actual testing one can choose `Release` mode as binaries will be optimized in this mode. In Visual Studio Code, press `CTRL + SHIFT + P` (`CMD + SHIFT + P` on mac) to open command palette, then search and select for `Run Tasks` option. In task list, there are couple of most used tasks are already defined, in that you can select `Build entire repository` option from it to build the repository. Once you select that option, on next window you need to select configuration type from `Debug` OR `Release`. For development purpose one can go with `Debug` option and for actual testing one can choose `Release` mode as binaries will be optimized in this mode.
### Building on command-line ### Building on command-line
...@@ -303,7 +303,7 @@ To build a code change associated with a modification, run the build script in t ...@@ -303,7 +303,7 @@ To build a code change associated with a modification, run the build script in t
On Windows, you can run the command script: On Windows, you can run the command script:
```powershell ```powershell
.\build.cmd .\eng\build.cmd
``` ```
On macOS/Linux, you can run the shell script: On macOS/Linux, you can run the shell script:
...@@ -312,7 +312,7 @@ On macOS/Linux, you can run the shell script: ...@@ -312,7 +312,7 @@ On macOS/Linux, you can run the shell script:
./build.sh ./build.sh
``` ```
> :bulb: Before using the `build.cmd` or `build.sh` at the top-level or in a subfolder, you will need to make sure that [the dependencies documented above](#step-2-install-pre-requisites) have been installed. > :bulb: Before using the `.\eng\build.cmd` or `.\eng\build.sh` at the top-level or in a subfolder, you will need to make sure that [the dependencies documented above](#step-2-install-pre-requisites) have been installed.
By default, all of the C# projects are built. Some C# projects require NodeJS to be installed to compile JavaScript assets which are then checked in as source. If NodeJS is detected on the path, the NodeJS projects will be compiled as part of building C# projects. If NodeJS is not detected on the path, the JavaScript assets checked in previously will be used instead. To disable building NodeJS projects, specify `-noBuildNodeJS` or `--no-build-nodejs` on the command line. By default, all of the C# projects are built. Some C# projects require NodeJS to be installed to compile JavaScript assets which are then checked in as source. If NodeJS is detected on the path, the NodeJS projects will be compiled as part of building C# projects. If NodeJS is not detected on the path, the JavaScript assets checked in previously will be used instead. To disable building NodeJS projects, specify `-noBuildNodeJS` or `--no-build-nodejs` on the command line.
...@@ -388,9 +388,9 @@ See ["Artifacts"](./Artifacts.md) for more explanation of the different folders ...@@ -388,9 +388,9 @@ See ["Artifacts"](./Artifacts.md) for more explanation of the different folders
Building installers does not run as part of `build.cmd` run without parameters, so you should opt-in for building them: Building installers does not run as part of `build.cmd` run without parameters, so you should opt-in for building them:
```powershell ```powershell
.\build.cmd -all -pack -arch x64 .\eng\build.cmd -all -pack -arch x64
.\build.cmd -all -pack -arch x86 -noBuildJava .\eng\build.cmd -all -pack -arch x86 -noBuildJava
.\build.cmd -buildInstallers .\eng\build.cmd -buildInstallers
``` ```
_Note_: Additional build steps listed above aren't necessary on Linux or macOS. _Note_: Additional build steps listed above aren't necessary on Linux or macOS.
......
...@@ -70,7 +70,6 @@ if ("$Version" -eq "2019") { ...@@ -70,7 +70,6 @@ if ("$Version" -eq "2019") {
} }
if ("$Version" -eq "2022") { if ("$Version" -eq "2022") {
$vsversion = 17; $vsversion = 17;
$Channel = "Preview";
} }
$channelUri = "https://aka.ms/vs/$vsversion/release" $channelUri = "https://aka.ms/vs/$vsversion/release"
$responseFileName = "vs.$vsversion" $responseFileName = "vs.$vsversion"
......
{
"channelUri": "https://aka.ms/vs/17/release/channel",
"channelId": "VisualStudio.17.Release",
"includeRecommended": false,
"addProductLang": [
"en-US"
],
"add": [
"Microsoft.Net.Component.4.6.2.TargetingPack",
"Microsoft.Net.Component.4.7.2.SDK",
"Microsoft.Net.Component.4.7.2.TargetingPack",
"Microsoft.VisualStudio.Component.FSharp.MSBuild",
"Microsoft.VisualStudio.Component.NuGet",
"Microsoft.VisualStudio.Component.NuGet.BuildTools",
"Microsoft.VisualStudio.Component.VC.ATL",
"Microsoft.VisualStudio.Component.VC.Tools.x86.x64",
"Microsoft.VisualStudio.Component.Windows10SDK.18362",
"Microsoft.VisualStudio.Workload.ManagedDesktopBuildTools",
"Microsoft.VisualStudio.Workload.MSBuildTools",
"Microsoft.VisualStudio.Workload.NetCoreBuildTools",
"Microsoft.VisualStudio.Workload.VCTools",
"Microsoft.VisualStudio.Workload.VisualStudioExtensionBuildTools",
"Microsoft.VisualStudio.Workload.WebBuildTools"
]
}
{
"channelUri": "https://aka.ms/vs/17/release/channel",
"channelId": "VisualStudio.17.Release",
"includeRecommended": false,
"addProductLang": [
"en-US"
],
"add": [
"Microsoft.Net.Component.4.6.2.TargetingPack",
"Microsoft.Net.Component.4.7.2.SDK",
"Microsoft.Net.Component.4.7.2.TargetingPack",
"Microsoft.VisualStudio.Component.VC.ATL",
"Microsoft.VisualStudio.Component.VC.Tools.x86.x64",
"Microsoft.VisualStudio.Component.Windows10SDK.18362",
"Microsoft.VisualStudio.Workload.ManagedDesktop",
"Microsoft.VisualStudio.Workload.NativeDesktop",
"Microsoft.VisualStudio.Workload.NetWeb",
"Microsoft.VisualStudio.Workload.VisualStudioExtension"
]
}
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册