Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Commit ff9b883

Browse files
William Liwilliaml33
authored andcommitted
Update Mac installer
According to https://github.com/dotnet/cli/issues/6682 Window title Update Introduction step content Include installation location and list of all components installed Update Summary step content What is not included: Remove "Welcome to ..." text -- it come from the installer tool itself, it cannot be customized Add 'success' graphic – cannot include picture in the html used by the installer
1 parent 1ad0e4d commit ff9b883

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+659
-1948
lines changed

packaging/osx/clisdk/Distribution-Template

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="utf-8" standalone="no"?>
22
<installer-gui-script minSpecVersion="1">
33
<title>{CLISdkBrandName} (x64)</title>
4-
<license file="eula.rtf" mime-type="application/rtf" />
54
<background file="dotnetbackground.png" mime-type="image/png"/>
65
<options customize="never" require-scripts="false" />
76
<welcome file="welcome.html" mime-type="text/html" />
8-
<conclusion file="firstTimeWelcomeMessage.html" mime-type="text/html" />
7+
<conclusion file="conclusion.html" mime-type="text/html" />
98
<volume-check>
109
<allowed-os-version>
1110
<os-version min="10.12" />
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
</head>
6+
<body>
7+
<div align="left" style="font-family: Helvetica;padding-left:10px">
8+
<p>The following was installed at /usr/local/share/dotnet</h2>
9+
<ul>
10+
<li>.NET Core SDK 2.0.0</li>
11+
<li>.NET Core Runtime 2.0.0</li>
12+
<li>Runtime Package Store</li>
13+
</ul>
14+
</div>
15+
<br>
16+
<div align="left" style="font-family: Helvetica">
17+
<h2 style="padding-left:10px"> Resources </h2>
18+
<ul>
19+
<li><a href="https://aka.ms/dotnet-docs">Core Documentation</a></li>
20+
<li><a href="https://aka.ms/dotnet-cli-docs">SDK Documentation</a></li>
21+
<li><a href="https://aka.ms/20-p2-rel-notes">Release Notes</a></li>
22+
<li><a href="https://aka.ms/dotnet-tutorials">Tutorials</a></li>
23+
<li><a href="https://aka.ms/dotnet-cli-telemetry">.NET Core Telemetry</a></li>
24+
</ul>
25+
</div>
26+
</body>
27+
</html>

packaging/osx/clisdk/resources/cs.lproj/eula.rtf

Lines changed: 0 additions & 97 deletions
This file was deleted.

packaging/osx/clisdk/resources/cs.lproj/firstTimeWelcomeMessage.html

Lines changed: 0 additions & 29 deletions
This file was deleted.

packaging/osx/clisdk/resources/cs.lproj/welcome.html

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,26 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<title styles="color:white">Welcome to the .NET Core CLI installer.</title>
65
</head>
76
<body>
8-
<font face="Helvetica">
9-
<h3>
10-
Microsoft .NET Core CLI
11-
</h3>
12-
<p>
13-
.NET Core is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs.
14-
</p>
15-
<p>
16-
This package contains all the tools you will need to start writing applications with .NET Core. It includes the several tools, including the C# compiler and the NuGet package manager, and a copy of .NET Core for both you and the tools to use.
17-
</p>
18-
</font>
7+
<br>
8+
<div align="left" style="font-family: Helvetica;padding-left:10px">
9+
<h2>.NET Core SDK</h2>
10+
<p>.NET Core is a development platform that you can use to build command-line applications, microservices and modern websites.It is open source, cross-platform, and supported by Microsoft. We hope you enjoy it!</p>
11+
</div>
12+
<div align="left" style="font-family: Helvetica">
13+
<h2 style="padding-left:10px">Learn more about .NET Core</h2>
14+
<ul>
15+
<li><a href="https://aka.ms/dotnet-docs">Core Documentation</a></li>
16+
<li><a href="https://aka.ms/dotnet-cli-docs">SDK Documentation</a></li>
17+
<li><a href="https://aka.ms/dev-privacy">Privacy Statement</a></li>
18+
<li><a href="https://aka.ms/dotnet-license">MIT License</a></li>
19+
</ul>
20+
</div>
21+
<br>
22+
<div align="left" style="font-family: Helvetica;padding-left:10px">
23+
<h2>Installation note</h2>
24+
<p>A command will be run during the install process that will improve project restore speed and enable offline access. It will take up to a minute to complete.</p>
25+
</div>
1926
</body>
20-
</html>
27+
</html>

0 commit comments

Comments
 (0)