├── .gitignore ├── 10_BeforeExternalData ├── BeforeExternalData.sln └── EmployeeOrientation │ ├── AppManifest.xml │ ├── Content Types │ └── NewEmployee │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Content │ ├── App.css │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── EmployeeOrientation.csproj │ ├── Features │ └── NewEmployeeOrientationComponents │ │ ├── NewEmployeeOrientationComponents.Template.xml │ │ └── NewEmployeeOrientationComponents.feature │ ├── Images │ ├── AppIcon.png │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── Lists │ ├── NewEmployeeOrientation │ │ ├── Elements.xml │ │ ├── NewEmployeesInSeattle │ │ │ ├── Elements.xml │ │ │ └── SharePointProjectItem.spdata │ │ ├── Schema.xml │ │ └── SharePointProjectItem.spdata │ ├── WorkflowHistoryList │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ └── WorkflowTaskList │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Package │ ├── Package.Template.xml │ └── Package.package │ ├── Pages │ ├── Default.aspx │ ├── Elements.xml │ ├── Help.aspx │ └── SharePointProjectItem.spdata │ ├── RunOrientationAdd-in │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── Scripts │ ├── Add-in.js │ ├── Elements.xml │ ├── OrientationStageRendering.js │ ├── SharePointProjectItem.spdata │ └── _references.js │ ├── Site Columns │ ├── Division │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ └── OrientationStage │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ └── Workflows │ └── HR_Intake │ ├── SharePointProjectItem.spdata │ └── Workflow.xaml ├── 1_BeforeColumns ├── BeforeColumns.sln └── EmployeeOrientation │ ├── AppManifest.xml │ ├── Content │ ├── App.css │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── EmployeeOrientation.csproj │ ├── Features │ └── NewEmployeeOrientationComponents │ │ ├── NewEmployeeOrientationComponents.Template.xml │ │ └── NewEmployeeOrientationComponents.feature │ ├── Images │ ├── AppIcon.png │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── Lists │ └── NewEmployeeOrientation │ │ ├── Elements.xml │ │ ├── NewEmployeesInSeattle │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ │ ├── Schema.xml │ │ └── SharePointProjectItem.spdata │ ├── Package │ ├── Package.Template.xml │ └── Package.package │ ├── Pages │ ├── Default.aspx │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ └── Scripts │ ├── App.js │ ├── Elements.xml │ ├── SharePointProjectItem.spdata │ └── _references.js ├── 2_BeforeContentType ├── BeforeContentType.sln └── EmployeeOrientation │ ├── AppManifest.xml │ ├── Content │ ├── App.css │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── EmployeeOrientation.csproj │ ├── Features │ └── NewEmployeeOrientationComponents │ │ ├── NewEmployeeOrientationComponents.Template.xml │ │ └── NewEmployeeOrientationComponents.feature │ ├── Images │ ├── AppIcon.png │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── Lists │ └── NewEmployeeOrientation │ │ ├── Elements.xml │ │ ├── NewEmployeesInSeattle │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ │ ├── Schema.xml │ │ └── SharePointProjectItem.spdata │ ├── Package │ ├── Package.Template.xml │ └── Package.package │ ├── Pages │ ├── Default.aspx │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── Scripts │ ├── App.js │ ├── Elements.xml │ ├── SharePointProjectItem.spdata │ └── _references.js │ └── Site Columns │ ├── Division │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ └── OrientationStage │ ├── Elements.xml │ └── SharePointProjectItem.spdata ├── 3_BeforeWebPart ├── BeforeWebPart.sln └── EmployeeOrientation │ ├── AppManifest.xml │ ├── Content Types │ └── NewEmployee │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Content │ ├── App.css │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── EmployeeOrientation.csproj │ ├── Features │ └── NewEmployeeOrientationComponents │ │ ├── NewEmployeeOrientationComponents.Template.xml │ │ └── NewEmployeeOrientationComponents.feature │ ├── Images │ ├── AppIcon.png │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── Lists │ └── NewEmployeeOrientation │ │ ├── Elements.xml │ │ ├── NewEmployeesInSeattle │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ │ ├── Schema.xml │ │ └── SharePointProjectItem.spdata │ ├── Package │ ├── Package.Template.xml │ └── Package.package │ ├── Pages │ ├── Default.aspx │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── Scripts │ ├── App.js │ ├── Elements.xml │ ├── SharePointProjectItem.spdata │ └── _references.js │ └── Site Columns │ ├── Division │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ └── OrientationStage │ ├── Elements.xml │ └── SharePointProjectItem.spdata ├── 4_BeforeWorkflow ├── BeforeWorkflow.sln └── EmployeeOrientation │ ├── AppManifest.xml │ ├── Content Types │ └── NewEmployee │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Content │ ├── App.css │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── EmployeeOrientation.csproj │ ├── Features │ └── NewEmployeeOrientationComponents │ │ ├── NewEmployeeOrientationComponents.Template.xml │ │ └── NewEmployeeOrientationComponents.feature │ ├── Images │ ├── AppIcon.png │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── Lists │ └── NewEmployeeOrientation │ │ ├── Elements.xml │ │ ├── NewEmployeesInSeattle │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ │ ├── Schema.xml │ │ └── SharePointProjectItem.spdata │ ├── Package │ ├── Package.Template.xml │ └── Package.package │ ├── Pages │ ├── Default.aspx │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── Scripts │ ├── App.js │ ├── Elements.xml │ ├── SharePointProjectItem.spdata │ └── _references.js │ └── Site Columns │ ├── Division │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ └── OrientationStage │ ├── Elements.xml │ └── SharePointProjectItem.spdata ├── 5_BeforePage ├── BeforePage.sln └── EmployeeOrientation │ ├── AppManifest.xml │ ├── Content Types │ └── NewEmployee │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Content │ ├── App.css │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── EmployeeOrientation.csproj │ ├── Features │ └── NewEmployeeOrientationComponents │ │ ├── NewEmployeeOrientationComponents.Template.xml │ │ └── NewEmployeeOrientationComponents.feature │ ├── Images │ ├── AppIcon.png │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── Lists │ ├── NewEmployeeOrientation │ │ ├── Elements.xml │ │ ├── NewEmployeesInSeattle │ │ │ ├── Elements.xml │ │ │ └── SharePointProjectItem.spdata │ │ ├── Schema.xml │ │ └── SharePointProjectItem.spdata │ ├── WorkflowHistoryList │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ └── WorkflowTaskList │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Package │ ├── Package.Template.xml │ └── Package.package │ ├── Pages │ ├── Default.aspx │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── Scripts │ ├── App.js │ ├── Elements.xml │ ├── SharePointProjectItem.spdata │ └── _references.js │ ├── Site Columns │ ├── Division │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ └── OrientationStage │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ └── Workflows │ └── HR_Intake │ ├── SharePointProjectItem.spdata │ └── Workflow.xaml ├── 6_BeforeClientRenderedControl ├── BeforeClientRenderedControl.sln └── EmployeeOrientation │ ├── AppManifest.xml │ ├── Content Types │ └── NewEmployee │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Content │ ├── App.css │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── EmployeeOrientation.csproj │ ├── Features │ └── NewEmployeeOrientationComponents │ │ ├── NewEmployeeOrientationComponents.Template.xml │ │ └── NewEmployeeOrientationComponents.feature │ ├── Images │ ├── AppIcon.png │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── Lists │ ├── NewEmployeeOrientation │ │ ├── Elements.xml │ │ ├── NewEmployeesInSeattle │ │ │ ├── Elements.xml │ │ │ └── SharePointProjectItem.spdata │ │ ├── Schema.xml │ │ └── SharePointProjectItem.spdata │ ├── WorkflowHistoryList │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ └── WorkflowTaskList │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Package │ ├── Package.Template.xml │ └── Package.package │ ├── Pages │ ├── Default.aspx │ ├── Elements.xml │ ├── Help.aspx │ └── SharePointProjectItem.spdata │ ├── Scripts │ ├── App.js │ ├── Elements.xml │ ├── SharePointProjectItem.spdata │ └── _references.js │ ├── Site Columns │ ├── Division │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ └── OrientationStage │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ └── Workflows │ └── HR_Intake │ ├── SharePointProjectItem.spdata │ └── Workflow.xaml ├── 7_BeforeRibbon ├── BeforeRibbon.sln └── EmployeeOrientation │ ├── AppManifest.xml │ ├── Content Types │ └── NewEmployee │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Content │ ├── App.css │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── EmployeeOrientation.csproj │ ├── Features │ └── NewEmployeeOrientationComponents │ │ ├── NewEmployeeOrientationComponents.Template.xml │ │ └── NewEmployeeOrientationComponents.feature │ ├── Images │ ├── AppIcon.png │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── Lists │ ├── NewEmployeeOrientation │ │ ├── Elements.xml │ │ ├── NewEmployeesInSeattle │ │ │ ├── Elements.xml │ │ │ └── SharePointProjectItem.spdata │ │ ├── Schema.xml │ │ └── SharePointProjectItem.spdata │ ├── WorkflowHistoryList │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ └── WorkflowTaskList │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Package │ ├── Package.Template.xml │ └── Package.package │ ├── Pages │ ├── Default.aspx │ ├── Elements.xml │ ├── Help.aspx │ └── SharePointProjectItem.spdata │ ├── Scripts │ ├── App.js │ ├── Elements.xml │ ├── OrientationStageRendering.js │ ├── SharePointProjectItem.spdata │ └── _references.js │ ├── Site Columns │ ├── Division │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ └── OrientationStage │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ └── Workflows │ └── HR_Intake │ ├── SharePointProjectItem.spdata │ └── Workflow.xaml ├── 8_BeforeJSOM ├── BeforeJSOM.sln └── EmployeeOrientation │ ├── AppManifest.xml │ ├── Content Types │ └── NewEmployee │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Content │ ├── App.css │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── EmployeeOrientation.csproj │ ├── Features │ └── NewEmployeeOrientationComponents │ │ ├── NewEmployeeOrientationComponents.Template.xml │ │ └── NewEmployeeOrientationComponents.feature │ ├── Images │ ├── AppIcon.png │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── Lists │ ├── NewEmployeeOrientation │ │ ├── Elements.xml │ │ ├── NewEmployeesInSeattle │ │ │ ├── Elements.xml │ │ │ └── SharePointProjectItem.spdata │ │ ├── Schema.xml │ │ └── SharePointProjectItem.spdata │ ├── WorkflowHistoryList │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ └── WorkflowTaskList │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Package │ ├── Package.Template.xml │ └── Package.package │ ├── Pages │ ├── Default.aspx │ ├── Elements.xml │ ├── Help.aspx │ └── SharePointProjectItem.spdata │ ├── RunOrientationAdd-in │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── Scripts │ ├── App.js │ ├── Elements.xml │ ├── OrientationStageRendering.js │ ├── SharePointProjectItem.spdata │ └── _references.js │ ├── Site Columns │ ├── Division │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ └── OrientationStage │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ └── Workflows │ └── HR_Intake │ ├── SharePointProjectItem.spdata │ └── Workflow.xaml ├── 9_BeforeHostWebData ├── BeforeHostWebData.sln └── EmployeeOrientation │ ├── AppManifest.xml │ ├── Content Types │ └── NewEmployee │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Content │ ├── App.css │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── EmployeeOrientation.csproj │ ├── Features │ └── NewEmployeeOrientationComponents │ │ ├── NewEmployeeOrientationComponents.Template.xml │ │ └── NewEmployeeOrientationComponents.feature │ ├── Images │ ├── AppIcon.png │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── Lists │ ├── NewEmployeeOrientation │ │ ├── Elements.xml │ │ ├── NewEmployeesInSeattle │ │ │ ├── Elements.xml │ │ │ └── SharePointProjectItem.spdata │ │ ├── Schema.xml │ │ └── SharePointProjectItem.spdata │ ├── WorkflowHistoryList │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ └── WorkflowTaskList │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Package │ ├── Package.Template.xml │ └── Package.package │ ├── Pages │ ├── Default.aspx │ ├── Elements.xml │ ├── Help.aspx │ └── SharePointProjectItem.spdata │ ├── RunOrientationAdd-in │ ├── Elements.xml │ └── SharePointProjectItem.spdata │ ├── Scripts │ ├── Add-in.js │ ├── Elements.xml │ ├── OrientationStageRendering.js │ ├── SharePointProjectItem.spdata │ └── _references.js │ ├── Site Columns │ ├── Division │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ └── OrientationStage │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ └── Workflows │ └── HR_Intake │ ├── SharePointProjectItem.spdata │ └── Workflow.xaml ├── LICENSE.txt └── README.md /10_BeforeExternalData/BeforeExternalData.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2013 4 | VisualStudioVersion = 12.0.31101.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EmployeeOrientation", "EmployeeOrientation\EmployeeOrientation.csproj", "{14486738-CE2F-4939-9C83-116BF82DBD59}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Debug|Any CPU.Deploy.0 = Debug|Any CPU 17 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.ActiveCfg = Release|Any CPU 18 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Build.0 = Release|Any CPU 19 | {14486738-CE2F-4939-9C83-116BF82DBD59}.Release|Any CPU.Deploy.0 = Release|Any CPU 20 | EndGlobalSection 21 | GlobalSection(SolutionProperties) = preSolution 22 | HideSolutionNode = FALSE 23 | EndGlobalSection 24 | EndGlobal 25 | -------------------------------------------------------------------------------- /10_BeforeExternalData/EmployeeOrientation/Content Types/NewEmployee/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /10_BeforeExternalData/EmployeeOrientation/Content/App.css: -------------------------------------------------------------------------------- 1 | /* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license at the bottom of this file. */ 2 | 3 | /* Place custom styles below */ 4 | 5 | p { 6 | color: green; 7 | } 8 | 9 | 10 | /* 11 | SharePoint-hosted SharePoint Add-in Tutorials, https://github.com/OfficeDev/SharePoint_SP-hosted_Add-ins_Tutorials 12 | 13 | Copyright (c) Microsoft Corporation 14 | All rights reserved. 15 | 16 | MIT License: 17 | Permission is hereby granted, free of charge, to any person obtaining 18 | a copy of this software and associated documentation files (the 19 | "Software"), to deal in the Software without restriction, including 20 | without limitation the rights to use, copy, modify, merge, publish, 21 | distribute, sublicense, and/or sell copies of the Software, and to 22 | permit persons to whom the Software is furnished to do so, subject to 23 | the following conditions: 24 | 25 | The above copyright notice and this permission notice shall be 26 | included in all copies or substantial portions of the Software. 27 | 28 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 29 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 30 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 31 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 32 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 33 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 34 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 35 | 36 | */ -------------------------------------------------------------------------------- /10_BeforeExternalData/EmployeeOrientation/Content/Elements.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /10_BeforeExternalData/EmployeeOrientation/Content/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /10_BeforeExternalData/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.Template.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /10_BeforeExternalData/EmployeeOrientation/Features/NewEmployeeOrientationComponents/NewEmployeeOrientationComponents.feature: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /10_BeforeExternalData/EmployeeOrientation/Images/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/SharePoint_SP-hosted_Add-Ins_Tutorials/d6d30867174454564f71030a7c929606a9362056/10_BeforeExternalData/EmployeeOrientation/Images/AppIcon.png -------------------------------------------------------------------------------- /10_BeforeExternalData/EmployeeOrientation/Images/Elements.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /10_BeforeExternalData/EmployeeOrientation/Images/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /10_BeforeExternalData/EmployeeOrientation/Lists/NewEmployeeOrientation/NewEmployeesInSeattle/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /10_BeforeExternalData/EmployeeOrientation/Lists/NewEmployeeOrientation/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /10_BeforeExternalData/EmployeeOrientation/Lists/WorkflowHistoryList/Elements.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /10_BeforeExternalData/EmployeeOrientation/Lists/WorkflowHistoryList/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /10_BeforeExternalData/EmployeeOrientation/Lists/WorkflowTaskList/Elements.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 9 | 10 | 13 | 14 | -------------------------------------------------------------------------------- /10_BeforeExternalData/EmployeeOrientation/Lists/WorkflowTaskList/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /10_BeforeExternalData/EmployeeOrientation/Package/Package.Template.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /10_BeforeExternalData/EmployeeOrientation/Package/Package.package: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /10_BeforeExternalData/EmployeeOrientation/Pages/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /10_BeforeExternalData/EmployeeOrientation/RunOrientationAdd-in/Elements.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 9 | 10 | 14 | 15 | 16 |