build.sh failed with "Execution Failed: no install script" message
See original GitHub issue- .NET Core Version: 3.0.103 (Commit: b7ef045669)
- Platform/OS: ubuntu linux 18.04-x64
- Winforms branch version (date): Thu Mar 26 07:37:13 2020 -0700
Problem description: I cloned the current version of Winforms and tried to build it local, and I got error message (below with the command):
maestro@mmeniac:~/.vscode/extensions/WinForms/winforms$ ./build.sh
/home/maestro/.vscode/extensions/WinForms/winforms/eng/common/native/install-dotnet-api-docs_netcoreapp3.0.sh --baseuri https://netcorenativeassets.blob.core.windows.net/resource-packages/external --installpath /home/maestro/.netcoreeng/native//bin --version 0.0.0.1
Execution Failed: no install script
Before I updated file global.json with my actual dotnet versions in such way:
{ “tools”: { “dotnet”: “3.0.103”, “runtimes”: { “dotnet”: [ “$(MicrosoftNETCoreAppPackageVersion)” ] } }, “sdk”: { “version”: “3.0.103” }, “msbuild-sdks”: { “Microsoft.DotNet.Arcade.Sdk”: “5.0.0-beta.20171.1”, “Microsoft.DotNet.Helix.Sdk”: “5.0.0-beta.20171.1”, “FIX-85B6-MERGE-9C38-CONFLICT”: “1.0.0”, “Microsoft.NET.Sdk.IL”: “5.0.0-alpha1.19513.3” }, “native-tools”: { “dotnet-api-docs_netcoreapp3.0”: “0.0.0.1” } }
Probably I should make some other changes in global.json? (but there is no explanations in corresponding documentation file about its parameters)
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:9 (5 by maintainers)

Top Related StackOverflow Question
@SergeyMatsiupa on Windows
dotnet-api-docs_netcoreapp3.0emits a warning too:In the interim, remove this line and try without it:
@chcosta this looks like an issue you fixed in https://github.com/dotnet/arcade/issues/4482. Though your fix applied to ps1 scripts, would the same fix need to be applied to sh scripts too?
The master is our “dev” branch, we don’t release form it.
If you don’t mind, please send a PR with the renames. Thank you