Skip to content

Commit 7399f98

Browse files
author
Dimitar Kerezov
committed
Change .NET download link
1 parent 4739181 commit 7399f98

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Alternatively, your can paste the following PowerShell setup script in a **Windo
7979
```PowerShell
8080
start-process -FilePath PowerShell.exe -Verb Runas -Wait -ArgumentList "-NoProfile -ExecutionPolicy Bypass -Command iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/NativeScript/nativescript-cli/production/setup/native-script.ps1'))"
8181
```
82-
> Both scripts require that you have **.NET 4.0 or later** installed on your system.
82+
> Both scripts require that you have **.NET 4.0 or later** installed on your system. You can download .NET 4.6.1 from this [link](http://go.microsoft.com/fwlink/?LinkId=671729).
8383
8484

8585
### Manual Setup
@@ -141,7 +141,7 @@ android update sdk --filter tools,platform-tools,android-23,build-tools-23.0.2,s
141141
> On OS X systems, you can develop, build, and deploy NativeScript projects that target iOS and Android.
142142
143143
### Setup Script
144-
To quickly set up your system for the latest NativeScript CLI, run the following Ruby setup script in the **Terminal**:
144+
To quickly set up your system for the latest NativeScript CLI, paste the following Ruby script in the **Terminal** and hit `Enter`:
145145
```Shell
146146
sudo ruby -e "$(curl -fsSL https://raw.githubusercontent.com/NativeScript/nativescript-cli/production/setup/native-script.rb)"
147147
```
@@ -421,13 +421,13 @@ You can develop shared functionality or design in common files. To indicate that
421421

422422
### Development in `platforms`
423423

424-
> **IMPORTANT:** Avoid editing files located in the `platforms` subdirectory because the NativeScript CLI overrides such files during the `prepare <Platform>` operation with the content from `app`.
424+
> **IMPORTANT:** Avoid editing files located in the `platforms` subdirectory because the NativeScript CLI overrides such files during the `prepare <Platform>` using the contents of the `app` directory.
425425
426426
### Modifying Configuration Files
427427

428428
The NativeScript CLI respects any platform configuration files placed inside `app/App_Resources`. Those files are respectively `app/App_Resources/AndroidManifest.xml` for Android and `app/App_Resources/Info.plist` for iOS.
429429

430-
Additionaly, you can modify `app/App_Resources/build.xcconfig` and `app/App_Resources/app.gradle` for adding/removing additional build properties for iOS and Android respectively.
430+
Additionaly, you can modify `app/App_Resources/build.xcconfig` and `app/App_Resources/app.gradle` for adding/removing additional build properties for iOS and Android, respectively.
431431

432432
[Back to Top][1]
433433

setup/native-script.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ $latestDotNetVersion = $dotNetVersions.GetEnumerator() | Sort-Object Version | S
1212
$latestDotNetMajorNumber = $latestDotNetVersion.Version.Split(".")[0]
1313
if ($latestDotNetMajorNumber -lt 4) {
1414
Write-Host -ForegroundColor Red "To run this script, you need .NET 4.0 or later installed"
15-
if ((Read-Host "Do you want to open Microsoft Download Center (y/n)") -eq 'y') {
16-
Start-Process -FilePath "https://www.microsoft.com/en-us/download/search.aspx?q=.net%20framework&p=0&r=10&t=&s=Relevancy~Descending"
15+
if ((Read-Host "Do you want to open .NET Framework 4.6.1 download page (y/n)") -eq 'y') {
16+
Start-Process -FilePath "http://go.microsoft.com/fwlink/?LinkId=671729"
1717
}
1818

1919
exit 1

0 commit comments

Comments
 (0)