Created
October 29, 2015 10:12
-
-
Save cromica/c8083af5d32caa6cdd63 to your computer and use it in GitHub Desktop.
Example to create plugin manifest for groupshare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-16"?> | |
<plugin id="Unique id of your plugin" name="name of your plugin" version="the plugin version"> | |
<!--public key token has to be the same for all the plugins so do not change the value from this sample. you need to sign your plugin assembly to have this public key toke--> | |
<extension type="{Name of your type including the namespace}, {Assembly name}, Version={Assembly version}, Culture=neutral, PublicKeyToken=c28cdb26c445c888"> | |
<extensionAttribute type="Sdl.StudioServer.Api.Core.CustomAuthenticationProviderExtentionAttribute, Sdl.StudioServer.Api.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=c28cdb26c445c888"> | |
<constructorArgs /> | |
<properties> | |
<property name="CanValidateUserExistance">True</property> | |
</properties> | |
</extensionAttribute> | |
<auxiliaryExtensionAttributes /> | |
</extension> | |
</plugin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment