Skip to content

Commit 96258df

Browse files
authored
Added steps at end
1 parent 8e658c2 commit 96258df

File tree

1 file changed

+25
-12
lines changed

1 file changed

+25
-12
lines changed

docs/sp-add-ins/get-started-creating-sharepoint-hosted-sharepoint-add-ins.md

Lines changed: 25 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Get started creating SharePoint-hosted SharePoint Add-ins
33
description: Set up a development environment and create your first SharePoint-hosted SharePoint Add-in.
4-
ms.date: 11/02/2017
4+
ms.date: 12/04/2017
55
ms.prod: sharepoint
66
---
77

@@ -10,14 +10,14 @@ ms.prod: sharepoint
1010
SharePoint-hosted add-ins are one of the two major types of SharePoint Add-ins. For an overview of SharePoint Add-ins and the two different types, see [SharePoint Add-ins](sharepoint-add-ins.md). Here's a summary of SharePoint-hosted add-ins:
1111

1212
- They contain SharePoint lists, Web Parts, workflows, custom pages, and other components, all of which are installed on a subweb, called the add-in web, of the SharePoint website where the add-in is installed.
13-
1413
- The only code they have is JavaScript on custom SharePoint pages.
1514

16-
- Step 1 - Set up your dev environment
17-
18-
- Step 2 - Create the app project
15+
In this article, you'll complete the following steps:
1916

20-
- Step 3 - Code your app
17+
- Set up your dev environment
18+
- Create the add-in project
19+
- Code your add-in
20+
- Run the add-in and test the list
2121

2222
<a name="Setup"> </a>
2323
## Set up your dev environment
@@ -28,7 +28,9 @@ There are many ways to set up a development environment for SharePoint Add-ins.
2828

2929
- If you don't already have **Visual Studio** 2013 or later installed, install it using the instructions at [Install Visual Studio](https://docs.microsoft.com/en-us/visualstudio/install/install-visual-studio). We recommend using the [latest version from the Microsoft Download Center](https://www.visualstudio.com/downloads/download-visual-studio-vs).
3030

31-
- Visual Studio includes the **Microsoft Office Developer Tools for Visual Studio**. Sometimes a version of the tools is released between updates of Visual Studio. To be sure that you have the latest version of the tools, run the [installer for Office Developer Tools for Visual Studio 2013](http://aka.ms/OfficeDevToolsForVS2013), or the [installer for Office Developer Tools for Visual Studio 2015](http://aka.ms/OfficeDevToolsForVS2015).
31+
- Visual Studio includes the **Microsoft Office Developer Tools for Visual Studio**. Sometimes a version of the tools is released between updates of Visual Studio. To be sure that you have the latest version of the tools, run the [installer for Office Developer Tools for Visual Studio 2013](http://aka.ms/OfficeDevToolsForVS2013), or the [installer for Office Developer Tools for Visual Studio 2015](http://aka.ms/OfficeDevToolsForVS2015).
32+
33+
Reference [earlier versions of Visual Studio](http://msdn.microsoft.com/library/da049020-cfda-40d7-8ff4-7492772b620f.aspx) or other [Visual Studio documentation](https://docs.microsoft.com/en-us/visualstudio/).
3234

3335
<a name="o365_signup"> </a>
3436
### Sign up for an Office 365 Developer Site
@@ -237,13 +239,24 @@ For your first SharePoint-hosted SharePoint Add-in, we'll include the classic Sh
237239
238240
5. You will work with this add-in and Visual Studio solution in other articles, and it's a good practice to retract the add-in one last time when you are finished working with it for a while. Right-click the project in **Solution Explorer**, and select **Retract**.
239241
240-
## Additional resources
242+
<a name="in-this-section"> </a>
243+
## Create SharePoint-hosted SharePoint Add-ins
241244
242-
- [Install earlier versions of Visual Studio](http://msdn.microsoft.com/library/da049020-cfda-40d7-8ff4-7492772b620f.aspx)
243-
- [Visual Studio documentation](https://docs.microsoft.com/en-us/visualstudio/)
245+
Walk through the following steps to create your add-ins:
246+
247+
- [Get started creating SharePoint-hosted SharePoint Add-ins](get-started-creating-sharepoint-hosted-sharepoint-add-ins.md)
248+
- [Deploy and install a SharePoint-hosted SharePoint Add-in](deploy-and-install-a-sharepoint-hosted-sharepoint-add-in.md)
249+
- [Add custom columns to a SharePoint-hosted SharePoint Add-in](add-custom-columns-to-a-sharepoint-hosted-sharepoint-add-in.md)
250+
- [Add a custom content type to a SharePoint-hosted SharePoint Add-in](add-a-custom-content-type-to-a-sharepoint-hosted-sharepoint-add-in.md)
251+
- [Add a Web Part to a page in a SharePoint-hosted SharePoint Add-in](add-a-web-part-to-a-page-in-a-sharepoint-hosted-sharepoint-add-in.md)
252+
- [Add a workflow to a SharePoint-hosted SharePoint Add-in](add-a-workflow-to-a-sharepoint-hosted-sharepoint-add-in.md)
253+
- [Add a custom page and style to a SharePoint-hosted SharePoint Add-in](add-a-custom-page-and-style-to-a-sharepoint-hosted-sharepoint-add-in.md)
254+
- [Add custom client-side rendering to a SharePoint-hosted SharePoint Add-in](add-custom-client-side-rendering-to-a-sharepoint-hosted-sharepoint-add-in.md)
255+
- [Create a custom ribbon button in the host web of a SharePoint Add-in](create-a-custom-ribbon-button-in-the-host-web-of-a-sharepoint-add-in.md)
256+
- [Use the SharePoint JavaScript APIs to work with SharePoint data](use-the-sharepoint-javascript-apis-to-work-with-sharepoint-data.md)
244257
245-
## Next steps
246258
<a name="Nextsteps"> </a>
259+
## Next steps
247260
248-
So far, there isn't much orientation information in the list. We'll add some in later articles in this series. But first, take a brief break from coding to learn about deploying SharePoint Add-ins in [Deploy and install a SharePoint-hosted SharePoint Add-in](deploy-and-install-a-sharepoint-hosted-sharepoint-add-in.md).
261+
Go to Step 1: [Deploy and install a SharePoint-hosted SharePoint Add-in](deploy-and-install-a-sharepoint-hosted-sharepoint-add-in.md).
249262

0 commit comments

Comments
 (0)