Skip to content

Commit a7e20e7

Browse files
committed
Fix namespaces
1 parent a658526 commit a7e20e7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/transform/modernize-userinterface-site-pages-model.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,14 +122,14 @@ Add-ons allow you to insert your custom logic into the mapping model by followin
122122

123123
### Create your custom functions/selectors assembly
124124

125-
To create your own functions you'll need to reference the SharePoint.Modernization.Framework assembly in your project and then create a class inheriting the `SharePoint.Modernization.Framework.Functions.FunctionsBase` class:
125+
To create your own functions you'll need to reference the SharePoint.Modernization.Framework assembly in your project and then create a class inheriting the `SharePointPnP.Modernization.Framework.Functions.FunctionsBase` class:
126126

127127
```csharp
128128
using Microsoft.SharePoint.Client;
129-
using SharePoint.Modernization.Framework.Functions;
129+
using SharePointPnP.Modernization.Framework.Functions;
130130
using System;
131131

132-
namespace SharePoint.Modernization.Framework.SampleAddOn
132+
namespace Contoso.Modernization
133133
{
134134
public class MyCustomFunctions: FunctionsBase
135135
{

0 commit comments

Comments
 (0)