Hi,
We are trying to create an appstore-app. The goal for this is for it to install some dll's, item types and templates.
I have created a nugged package with the following structure
\---contentFiles
\---any
\---any
\---Files
+---Files
| QuickOrderUploadTemplate.xlsx
|
+---System
| +---AddIns
| | +---Installed
| | | +---Dna.SwiftRizzo.FileManagement.1.0.0
| | | | Dna.SwiftRizzo.FileManagement.dll
| | | |
| | | +---Dna.SwiftRizzo.QuickOrder.WebAPI.1.0.0
| | | | Dna.SwiftRizzo.QuickOrder.WebAPI.dll
| | | |
| | | +---Dynamicweb.DataIntegration.Providers.ExcelProvider.1.0.0
| | | | Dynamicweb.DataIntegration.Providers.ExcelProvider.dll
| | | |
| | | +---EPPlus.5.6.3.0
| | | | EPPlus.dll
| | | |
| | | +---LumenWorks.Framework.IO.Core.1.0.1
| | | | LumenWorks.Framework.IO.Core.dll
| | | |
| | | \---Microsoft.IO.RecyclableMemoryStream.1.4.1
| | | Microsoft.IO.RecyclableMemoryStream.dll
| | |
| | \---Local
| | Dna.SwiftRizzo.FileManagement.dll
| | Dna.SwiftRizzo.QuickOrder.WebAPI.dll
| | Dynamicweb.DataIntegration.Providers.ExcelProvider.dll
| | EPPlus.dll
| | LumenWorks.Framework.IO.Core.dll
| | Microsoft.IO.RecyclableMemoryStream.dll
| |
| +---Items
| | ItemType_SwiftRizzo_QuickOrderApp.xml
| |
| \---Repositories
| \---SwiftProducts
| Products.query
|
\---Templates
\---Designs
\---Swift
+---Assets
| \---js
| \---rizzo
| sr-quickOrder-min.js
| sr-quickOrder.js
|
\---Paragraph
SwiftRizzo_QuickOrderApp.cshtml
My .nuspec goes like this
<?xml version="1.0"?>
<package>
<metadata>
<id>Dna.SwiftRizzo.QuickOrder.App</id>
<version>1.0.0</version>
<authors>Dynamicweb North America</authors>
<owners>Dynamicweb North America</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>SwiftRizzo QuickOrder App for Dynamicweb 10</description>
<tags>dynamicweb dynamicweb-app-store swiftrizzo-quickorder</tags>
</metadata>
<files>
<!-- Include everything under Files (DLLs, templates, etc.) -->
<file src="contentFiles\any\any\Files\**\*" target="contentFiles\any\any\Files" />
</files>
</package>
Next step would be for this to show on the App store. I read here (https://doc.dynamicweb.dev/documentation/extending/guides/newappstoreapp.html#publishing-the-app) that it looks at public nugget feed.
Can we configure other nugget feeds? If yes, how to?
Thank you