John Beisner
47988952ac
Updating the links in the README; fixing the installation script.
2017-06-15 15:25:41 -07:00
jbeisner
add33234a5
Merge pull request #6857 from johnbeisner/RuntimeCoherence
...
Enable creation and consumption of a 'coherent' pointer
2017-06-15 10:22:40 -07:00
John Beisner
c497bf498f
Write a 'latest.coherent.version' file at blob storage so users have a 'coherent' option to SDK installations.
2017-06-13 16:45:29 -07:00
William Li
3419a87d6f
Produce RPM packages
...
Reference from https://github.com/dotnet/core-setup/tree/master/src/pkg/packaging/rpm
The goal is to have parity with Debian,
but does not publish to the feed
When run the script with rhel, it will
produce rpm file in the package step
and publish rpm to the blob storage
2017-06-13 15:00:35 -07:00
John Beisner
b92c63c4d3
Fixing a conditional.
2017-06-12 09:38:02 -07:00
John Beisner
5eae1a3a31
Fixing logic; variable name.
2017-06-12 09:31:09 -07:00
John Beisner
cd753db228
Default channel=LTS
...
Clarify nomenclature from "alternate" to "legacy"
Skip construction of legacy URL if it's flawed.
2017-06-09 12:00:29 -07:00
John Beisner
ce61070a69
Updates to install scripts to consume the renaming packages at blob storage. Unpinning the CLI build from a specific version.
2017-06-07 10:18:05 -07:00
John Beisner
ed65b2bc9c
Runtime download link missing the "runtime" identifier.
2017-05-31 08:35:00 -07:00
John Beisner
a53424cc04
Fixing an OSx break: "osname: unbound variable"
2017-05-30 11:37:34 -07:00
John Beisner
b48b7d2ea0
.NET Core 2+ Naming and Versioning
...
New file name structure for the runtime and the CLI
per: https://github.com/dotnet/designs/issues/2
The renaming of assets, therefore the dotnet installation scripts must change to accommodate.
Trivial:
"Write-Host" should be "Write-Output"
2017-05-26 15:46:56 -07:00
jbeisner
911236d964
Merge pull request #6664 from johnbeisner/InstallScripts
...
Linux distro update for dotnet-install.sh; et al.
2017-05-23 17:28:29 -07:00
John Beisner
d3373d9459
Removing unused parameters.; ".StartsWith" method for strings is not always present.
2017-05-23 16:41:46 -07:00
John Beisner
229518b486
Default channel in the install scripts; dotnet-install.ps1 and dotnet-install.sh = “release/1.0.0”
...
For the Runtime: resolves to: 1.0.5
For the SDK: resolves to: 1.0.4
2017-05-23 15:09:31 -07:00
John Beisner
1ded4f11e3
Forcing 'curl' to return an usable exitcode.
2017-05-23 11:28:38 -07:00
John Beisner
6222e66a07
Changes per code review - stronger download failure logic.
2017-05-23 10:45:15 -07:00
John Beisner
1fe96fd86e
Changes per additional manual testing on ubuntu-x64
2017-05-23 08:15:41 -07:00
John Beisner
283bff55ce
Changes per manual testing on Windows-x64
2017-05-22 16:17:31 -07:00
John Beisner
cff302d678
Changes per manual testing on ubuntu-x64
2017-05-22 14:15:43 -07:00
John Beisner
3db157aba6
First draft changes for install script for the SDK and Runtime.
2017-05-22 12:53:52 -07:00
James Lanng
497d048b1c
Support corporate proxy servers
2017-05-10 10:44:40 +01:00
Livar
6a359f7ae0
Merge pull request #5865 from axelheer/patch-1
...
Add UseDefaultCredentials to dotnet-install.ps1
2017-04-11 13:55:51 -07:00
Daniel Lo Nigro
e391b5d5f3
Change shebang and remove comment about bashisms
2017-04-05 11:40:59 -07:00
Daniel Lo Nigro
6a27955d2f
Add bash shebang to dotnet-install.sh
2017-04-05 11:40:59 -07:00
Eric Erhardt
d0bdccf5d6
Merge pull request #6064 from omajid/remove-linux-portable-obtain-script
...
Remove --linux-portable from dotnet-install.sh
2017-03-19 21:41:16 -05:00
Omair Majid
4b233bdf82
Fix path printed in help for dotnet-install
...
The script does not install to /usr/local/share/. It instead installs to
$HOME/.dotnet. Fix the doc text.
Also fix the names in code that incorrectly talk about /usr/local/share.
2017-03-17 22:06:16 -04:00
Omair Majid
df98363da4
Remove --linux-portable from dotnet-install.sh
...
It duplicates functionality achieved by using `--runtime-id linux-x64`.
Remove it and fix callers.
Keep the the --linux-portable flag in the build scripts; that now calls
--runtime-id linux-x64 in the install script.
2017-03-17 20:27:02 -04:00
Omair Majid
46a1d6f41e
Add --runtime-id flag to dotnet-install.sh
...
This lets us specify the runtime id of the desired .NET Core SDK on the
command line. This makes it easier to get the SDK for the desired
runtime without having to modify the install script for new runtimes
unsupported by the current version of this script.
2017-03-14 17:52:57 -04:00
Justin Goshi
a66ef9f0ef
Fix spacing
2017-03-03 11:05:13 -08:00
Justin Goshi
cdf85ec1d2
Update the descriptino
2017-03-03 11:02:09 -08:00
Justin Goshi
e21c1a4a98
Change the command line argument per PR comments
2017-03-03 09:25:31 -08:00
Justin Goshi
ea5eeee06b
Update the install script to support osname
2017-03-01 16:00:26 -08:00
Axel Heer
05d2b4d266
Add UseDefaultCredentials to dotnet-install.ps1
...
When working behind a corporate proxy it may be necessary to authenticate properly.
2017-02-28 08:02:51 +01:00
Adeel
ba72ff0edd
Prefer Unix Shell build-in 'hash' over 'which'
...
`which` is an external utility. `hash` or `command -v` are built-in
General Commands.
See http://stackoverflow.com/a/677212/863980
I chose `hash` here as `run-build.sh` is already using it.
2017-02-26 01:24:04 +02:00
Omair Majid
3fde06faf8
dotnet-install should identify all RHEL 7.x as RHEL
...
New RHEL minor versions are compatible with previous RHEL minor
versions. They also replace them: all users using RHEL 7.n are migrated
to RHEL 7.(n+1) by a simple yum upgrade. So just treat all RHEL 7.x
version as RHEL.
This only holds true for minor versions. RHEL 7 is not compatible with
RHEL 6. But since .NET Core only supports RHEL 7, this shouldn't matter.
2017-01-20 17:19:35 -05:00
Jürgen Pfeifer
957ff3981f
- Never check agains username, that's bad practice. Always use effective UID ( #4894 )
...
- Never write error messages and tracing info to stdout, that's bad practice too.
2016-12-04 12:17:03 -08:00
Alex Barney
58b0566d9a
Add InstallDir to path if SDK version is already installed ( #4843 )
...
* Add InstallDir to path if SDK version is already installed
* Make changes based on feedback
* Rename "Append" to "Prepend"
* Remove check if directory is already in path
2016-11-30 20:36:24 -08:00
Livar Cunha
91e24d886b
Just moved the file check to after we have created the item.
2016-11-15 12:19:12 -08:00
Falco
b2a83e0072
check for free disk space upfront ( #4647 )
...
* check for free disk space upfront
* driveletter now derives from $InstallRoot
* whitespace corrected
* one space added
2016-11-11 17:54:46 -08:00
Matt Galbraith
9855dc0088
Increase HttpClient Timeout in bootstrap script ( #4659 )
...
* Increase HttpClient Timeout in bootstrap script
* Update dotnet-install.ps1
Fix comment
2016-11-08 23:23:46 -08:00
Eric Mellino
d2bbe1faa2
Add support for fedora.24 and alpine.3.4.3 in dotnet-install.sh
...
I've also included the string we attempted to match against if the installation fails.
2016-10-18 11:21:38 -07:00
mendhak
ee239e54cf
Using HttpClientHandler only if ProxyAddress argument specified
2016-10-10 22:34:30 +01:00
mendhak
047eb4f732
Corrected proxy in synopsis for installer
2016-10-10 17:49:28 +01:00
mendhak
47a4b44f1f
HttpClient to use ProxyAddress argument if passed in
2016-10-08 20:10:56 +01:00
Livar
5a038b6584
Merge pull request #4218 from juergenhoetzel/HANDLE_OS_DETECTION_ERRORS2
...
Handle OS detection errors
2016-09-23 08:49:56 -07:00
wtgodbe
a0e023ee7a
Port changes from core-setup's dotnet-install script to CLI
2016-09-22 14:15:03 -07:00
Juergen Hoetzel
b8a5219773
Handle OS detection errors
...
Check the exit status of get_latest_version_info and get_current_os_name to
prevent construction of invalid download URLs based on these functions.
Fixes #2923 .
2016-09-21 19:08:46 +02:00
Piotr Puszkiewicz
1ce482a8d1
Merge remote-tracking branch 'refs/remotes/origin/rel/1.0.0'
...
Conflicts:
scripts/obtain/dotnet-install.ps1
src/dotnet/commands/dotnet-new/CSharp_xunittest/project.json.template
2016-08-26 22:39:14 -07:00
Michael Simons (VISUAL STUDIO)
7914b63474
Modified logic that downloads content to provide better diagnostic information upon failure.
2016-08-25 11:47:45 -05:00
Piotr Puszkiewicz
2db1997bc0
Merge remote-tracking branch 'refs/remotes/origin/feature/msbuild'
...
Conflicts:
Microsoft.DotNet.Cli.sln
build_projects/dotnet-cli-build/DebTargets.cs
build_projects/dotnet-cli-build/TestTargets.cs
scripts/package/package-debian.sh
src/Microsoft.Extensions.DependencyModel/DependencyContextJsonReader.cs
src/dotnet/commands/dotnet-new/Program.cs
src/dotnet/commands/dotnet-pack/PackageGenerator.cs
test/Microsoft.Extensions.DependencyModel.Tests/DependencyContextJsonReaderTest.cs
2016-08-16 18:30:52 -07:00
Eric Erhardt
38d18eab4d
Fix dotnet-install.ps1.
...
Allow directories named "publish" in .gitignore.
Add files to the .sln.
2016-08-09 08:28:53 -05:00
Piotr Puszkiewicz
16692fc75c
Remove CDN caching from version files
2016-08-09 02:41:12 -07:00
Michael Simons (VISUAL STUDIO)
b53e254fbd
Updated Add-Type logic to account for Powershell Core Edition
2016-08-08 15:03:36 -05:00
Michael Simons (VISUAL STUDIO)
a34e93c340
Modified dotnet-install.ps1 to support Nano Server
2016-08-04 15:04:26 -05:00
Eric Erhardt
d2db776d87
Merge rel/1.0.0 into feature/msbuild.
2016-07-18 14:44:06 -05:00
Piotr Puszkiewicz
89e127b8ac
Move downloads to CDN ( #3873 )
2016-07-15 15:36:01 -04:00
Jostein Kjønigsen
2cba2c7688
Handle missing terminal capabilities.
...
When probing for terminal capabilities, tput will return exit-code 1
when the attribute is not valid for the current terminal.
If we don't handle that exit-code, the shell-script too will exit with
failure.
This patch simply ignores errors for attributes we cannot use,
resulting in the same result as if we never probed for it in the first
place.
2016-07-08 10:10:20 +02:00
Eric Erhardt
ba1715b8a6
Fix dotnet-install for the new Azure Publish layout.
2016-06-22 22:46:13 -05:00
Piotr Puszkiewicz
9d01e3bc2e
Merge rel/1.0.0-preview2 to rel/1.0.0 ( #3677 )
...
* Update README.md
* Moving Ubuntu 16.04 to be next to Ubuntu 14.04
* Adding Oracle Linux and Linux Mint to the titles
Adding Oracle Linux and Linux Mint to the titles next to their compatible binaries.
* Remove showing firsttime eula for non verbs.
* Add Serviceable assembly attribute and nuspec attributes for all shipping CLI assemblies.
Fix #3345
* Use NugetCache Sentinel for Telemetry setting.
* Fix Oracle Linux version in README.md
Oracle Linux 7 -> Oracle Linux 7.1
* Fix README to use hostfxr download links (#3622 )
Also fix a rebase error from b524fd079e6dcdd744faeb6061ccbfe99d1f810f#diff-04c6e90faac2675aa89e2176d2eec7d8
* Remove the VS2012 CRT dependency from docs (#3632 )
* fix typo in dotnet-install file
This was needed to rebuild the CLI with the updated Roslyn NuGet packages.
Thanks goes to @akoken for the fix.
2016-06-22 15:17:54 -07:00
Livar Cunha
7652335195
Addressing code review comments and adding opensuse 13.2
2016-05-31 15:15:57 -07:00
Livar Cunha
7963018d3d
Small changes that I noticed when diffing the files
2016-05-31 15:15:08 -07:00
Livar Cunha
e634fedae8
Adding Fedora 23
2016-05-31 15:15:08 -07:00
Livar Cunha
84d1b60ffe
Adding docker files, modifying scripts and code to handle ubuntu 16.04
2016-05-31 15:15:08 -07:00
Krzysztof Wicher
f4ceb1f213
Merge pull request #3272 from krwq/add_shared_runtime_switch
...
add -SharedRuntime switch support
2016-05-27 15:23:45 -07:00
Krzysztof Wicher
2a84c13817
add -SharedRuntime switch support
2016-05-27 12:19:53 -07:00
Krzysztof Wicher
5a77b03f36
add path to the front of the variable instead of the back
2016-05-23 12:48:53 -07:00
Eric Erhardt
78a70f049a
Remove duplicated install scripts.
...
Please use `dotnet-install` instead.
2016-05-20 22:09:36 -05:00
Krzysztof Wicher
b939c88e0c
remove check for gettext dependency in install.sh
2016-05-20 10:59:12 -07:00
Eric Erhardt
bf9b5a9288
Change the default channel in dotnet-install
scripts to "preview".
2016-05-19 13:36:24 -05:00
Bryan
584bd3e72d
Clean + fixup
2016-05-18 09:32:48 -07:00
Richard Lander
13d760c6a4
Remove .nuget dir on uninstall
2016-05-14 23:57:25 -07:00
Richard Lander
48712f9e54
Change to correct variable
2016-05-14 21:46:25 -07:00
Bryan Thornbury
b23feed7c8
debian package uninstallation script ( #3027 )
...
* debian package uninstallation script
* Script to remove/uninstall dotnet pkgs from a OSX machine.
* name change of deb uninstall script
* Address PR feedback
Changes to fail the script if the 'pkgutil --forget' command fails.
2016-05-13 20:37:20 -07:00
Bryan
f0cc32e1ee
move all return statements to exit 0
2016-05-13 11:39:28 -07:00
PiotrP
d906524dec
Fix install scripts to deal with content type change.
2016-05-12 10:25:49 -05:00
Sridhar Periyasamy
2d435ac880
Update the install scripts to use the preview channel.
...
Also the default now is the beta channel which has the latest 'preview1'
builds.
2016-05-10 15:35:10 -07:00
Krzysztof Wicher
b18df1c51c
fix default INSTALL_DIR issue in dotnet-install.sh
2016-05-04 11:55:06 -07:00
Piotr Puszkiewicz
0bfd94e998
Fix install-dotnet.sh to deal with trailing newline
2016-05-02 00:52:21 -07:00
Krzysztof Wicher
11e3fa36af
rename install.ps1/sh to dotnet-install.ps1/sh to match documentation
2016-04-08 10:51:16 -07:00
Andrew Stanton-Nurse
f87440a0fd
Remove '.' from default Windows install dir
2016-03-25 12:19:46 -07:00
Krzysztof Wicher
217922da14
don't redownload sdk in install.sh if package already installed
2016-03-24 15:15:24 -07:00
Krzysztof Wicher
688de72eb7
detecting that sdk is already installed (install.ps1)
2016-03-24 15:15:23 -07:00
Krzysztof Wicher
bb339bf73a
use template for mktemp call for portability
2016-03-21 19:16:51 -07:00
Krzysztof Wicher
b1548a9654
fix grep to work on OSX
2016-03-21 16:31:17 -07:00
Krzysztof Wicher
369796376b
update package name
2016-03-21 12:46:30 -07:00
Krzysztof Wicher
fa733ab9e9
preparing install.sh for shared fx
2016-03-21 12:46:28 -07:00
Krzysztof Wicher
701731be7a
improve message on -DryRun in install.ps1
2016-03-21 12:46:27 -07:00
Krzysztof Wicher
09f5bd8879
shared framework changes to install.ps1
2016-03-21 12:46:27 -07:00
Krzysztof Wicher
b7f7fc6096
Initial implementation of shared framework changes
2016-03-21 12:46:26 -07:00
Krzysztof Wicher
260eb9db8e
remove most of the bashisms
2016-03-21 12:46:25 -07:00
Krzysztof Wicher
54b33bc9ea
Support powershell switches in bash, unify --install-dir experience
2016-03-21 12:46:24 -07:00
Krzysztof Wicher
9360128c13
remove tar --overwrite switch as it is default and does not work on osx
2016-03-21 12:46:23 -07:00
Krzysztof Wicher
11f4dd94b9
add more logging to install.sh
2016-03-21 12:46:22 -07:00
Krzysztof Wicher
fc3d768768
more portable mktemp call
2016-03-21 12:46:21 -07:00
Krzysztof Wicher
7ecd8e8fba
fix failing extracting directory to file
2016-03-21 12:46:20 -07:00
Krzysztof Wicher
8fca17e56f
apply PR feedback
2016-03-21 12:46:18 -07:00
Krzysztof Wicher
138cfb4f69
fix formatting
2016-03-21 12:46:18 -07:00
Krzysztof Wicher
00abaf3b67
update install.sh
2016-03-21 12:46:16 -07:00
Krzysztof Wicher
58a5a73233
change amd64 to x64 in install.ps1 description
2016-03-21 12:45:33 -07:00
Krzysztof Wicher
987c867605
add default value descriptions and change default channel to preview
2016-03-21 12:45:32 -07:00