...
Code Block | ||
---|---|---|
| ||
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>com.castsoftware.nameoftheextension</id>
<version>x.x.x</version>
<title>MyExtension</title>
<authors>CAST Product</authors>
<owners>CAST</owners>
<licenseUrl>https://extend.castsoftware.com/V2/Licenses/Cast-Licence-Product-1.0.html</licenseUrl>
<projectUrl>https://doc.castsoftware.com/display/TECHNOS</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>This is a great extension that creates great objects and even greater links</description>
<releaseNotes>https://doc.castsoftware.com/display/TECHNOS/PHP/What's+new</releaseNotes>
<tags>CASTProduct LongTerm CAIP8.0 CAIP7.3</tags>
<dependencies>
<dependency id="CAIP" version="8.0.0" />
</dependencies>
</metadata>
<files />
</package> |
CAST Labs extensions
...
Code Block | ||
---|---|---|
| ||
<?xml version="1.0" encoding="utf-8"?> <package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> <metadata> <id>com.castsoftware.labs.nameoftheextension</id> <version>x.x.x</version> <title>MyExtension</title> <authors>CAST Labs</authors> <owners>CAST</owners> <licenseUrl>http://www.castsoftware.com/ps/doc/extension/license</licenseUrl> <projectUrl>https://github.com/CAST-Extend/com.castsoftware.labs.nameoftheextension</projectUrl> <requireLicenseAcceptance>false</requireLicenseAcceptance> <description>This is a great extension that creates great objects and even greater links</description> <releaseNotes>https://github.com/CAST-Extend/com.castsoftware.uc.nameoftheextension/wiki#a-specific-release-note-subsection</releaseNotes> <tags>Language FP CSS CAIP8.0.x</tags> <dependencies> <dependency id="CAIP" version="8.0.0" /> </dependencies> </metadata> <files /> </package> |
User Community extensions
...
Code Block | ||
---|---|---|
| ||
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>com.castsoftware.uc.nameoftheextension</id>
<version>x.x.x</version>
<title>MyExtension</title>
<authors>User Community</authors>
<owners>CAST</owners>
<licenseUrl>http://www.castsoftware.com/ps/doc/extension/license</licenseUrl>
<projectUrl>https://github.com/CAST-Extend/com.castsoftware.uc.nameoftheextension</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>This is a great extension that creates great objects and even greater links</description>
<releaseNotes>https://github.com/CAST-Extend/com.castsoftware.uc.nameoftheextension/wiki#a-specific-release-note-subsection</releaseNotes>
<tags>Language FP CSS CAIP8.0.x</tags>
<dependencies>
<dependency id="CAIP" version="8.0.0" />
</dependencies>
</metadata>
<files />
</package> |