You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/sp-add-ins/get-started-creating-sharepoint-hosted-sharepoint-add-ins.md
+25-12Lines changed: 25 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Get started creating SharePoint-hosted SharePoint Add-ins
3
3
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
5
5
ms.prod: sharepoint
6
6
---
7
7
@@ -10,14 +10,14 @@ ms.prod: sharepoint
10
10
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:
11
11
12
12
- 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
-
14
13
- The only code they have is JavaScript on custom SharePoint pages.
15
14
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:
19
16
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
21
21
22
22
<aname="Setup"> </a>
23
23
## Set up your dev environment
@@ -28,7 +28,9 @@ There are many ways to set up a development environment for SharePoint Add-ins.
28
28
29
29
- 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).
30
30
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/).
32
34
33
35
<aname="o365_signup"> </a>
34
36
### 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
237
239
238
240
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**.
239
241
240
-
## Additional resources
242
+
<a name="in-this-section"> </a>
243
+
## Create SharePoint-hosted SharePoint Add-ins
241
244
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)
244
257
245
-
## Next steps
246
258
<a name="Nextsteps"> </a>
259
+
## Next steps
247
260
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).
0 commit comments