Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDevelopment and...Development and...DNN Platform (o...DNN Platform (o...Create Module Package - can it include my DLLCreate Module Package - can it include my DLL's?
Previous
 
Next
New Post
2/8/2009 7:48 AM
 

Hi,

I'm developing a module.  To deploy to other instances of DNN I create a package.  I use Host | Module Definitions | Edit Module Definition (for my module).  At the bottom of the page is a Create Module Package link.

I already have a manifest file so I just click on Create.  This process packages everything listed in the manifest file EXCEPT the independent DLL's.  The DLL's are mentioned in the manifest...

 

...the DLL's are not packaged into the resulting ZIP file.  If I add the DLL's manually to the zip file then the manifest works correctly to unpack them into the 'Bin' folder on the target instance.  That suggests that the manifest works correctly.  Is it by design that the DLL's are not packaged, or am I missing something?


Best wishes,
- Richard
Agile Development Consultant, Practitioner, and Trainer
www.dynamisys.co.uk
 
New Post
2/8/2009 8:02 AM
 

Which DNN version? There are issues with DNN 5.0.0 to be fixed with DNN 5.0.1, otherwise you might wish to display your manifest here.



Alex Shirley


 
New Post
2/8/2009 8:08 AM
 

DNN Version 4.09.00.

I did have a snippet of the manifest in the original post, but I guess the FCK editor didn't like the angle brackets and excised it.

<-- Edited to delete badly formatted mess.  See the manifest file in next post. -->


Best wishes,
- Richard
Agile Development Consultant, Practitioner, and Trainer
www.dynamisys.co.uk
 
New Post
2/8/2009 8:10 AM
 

OK -I just tried pasting into  the TextBox view abd that wasn't a great success.

May I have a clue how to get XML displayed here?


Best wishes,
- Richard
Agile Development Consultant, Practitioner, and Trainer
www.dynamisys.co.uk
 
New Post
2/9/2009 7:02 AM
 

I found a way to post XML.  Here is my .dnn file.  There are only two DLL's they are near the bottom.

    1 <dotnetnuke version="3.0" type="Module">

    2   <folders>

    3     <folder>

    4       <name>VolleyballResults</name>

    5       <friendlyname>VolleyballResults</friendlyname>

    6       <foldername>VolleyballResults</foldername>

    7       <modulename>VolleyballResults</modulename>

    8       <description>VolleyballResults</description>

    9       <version>01.00.00</version>

   10       <businesscontrollerclass>

   11       </businesscontrollerclass>

   12       <modules>

   13         <module>

   14           <friendlyname>VolleyballResults</friendlyname>

   15           <cachetime>0</cachetime>

   16           <controls>

   17             <control>

   18               <title>Sports</title>

   19               <src>DesktopModules/VolleyballResults/Sports.ascx</src>

   20               <type>View</type>

   21             </control>

   22             <control>

   23               <key>ClubResultsSecretaries</key>

   24               <title>Club Results Secretaries</title>

   25               <src>DesktopModules/VolleyballResults/ClubResultsSecretaries.ascx</src>

   26               <type>View</type>

   27             </control>

   28             <control>

   29               <key>Clubs</key>

   30               <src>DesktopModules/VolleyballResults/Clubs.ascx</src>

   31               <type>View</type>

   32             </control>

   33             <control>

   34               <key>Competitions</key>

   35               <title>Competitions</title>

   36               <src>DesktopModules/VolleyballResults/Competitions.ascx</src>

   37               <type>View</type>

   38             </control>

   39             <control>

   40               <key>Cycles</key>

   41               <title>Cycles</title>

   42               <src>DesktopModules/VolleyballResults/Cycles.ascx</src>

   43               <type>View</type>

   44             </control>

   45             <control>

   46               <key>Divisions</key>

   47               <title>Divisions</title>

   48               <src>DesktopModules/VolleyballResults/Divisions.ascx</src>

   49               <type>View</type>

   50             </control>

   51             <control>

   52               <key>Fixtures</key>

   53               <title>Fixtures</title>

   54               <src>DesktopModules/VolleyballResults/Fixtures.ascx</src>

   55               <type>View</type>

   56             </control>

   57             <control>

   58               <key>Persons</key>

   59               <title>Persons</title>

   60               <src>DesktopModules/VolleyballResults/Persons.ascx</src>

   61               <type>View</type>

   62             </control>

   63             <control>

   64               <key>PlayerRegistration</key>

   65               <title>Player Registration</title>

   66               <src>DesktopModules/VolleyballResults/PlayerRegistration.ascx</src>

   67               <type>View</type>

   68               <supportspartialrendering>true</supportspartialrendering>

   69             </control>

   70             <control>

   71               <key>ResultDetail</key>

   72               <title>Result Detail</title>

   73               <src>DesktopModules/VolleyballResults/ResultDetail.ascx</src>

   74               <type>View</type>

   75             </control>

   76             <control>

   77               <key>TeamRegistration</key>

   78               <title>Team Registration</title>

   79               <src>DesktopModules/VolleyballResults/TeamRegistration.ascx</src>

   80               <type>View</type>

   81             </control>

   82             <control>

   83               <key>Teams</key>

   84               <title>Teams</title>

   85               <src>DesktopModules/VolleyballResults/Teams.ascx</src>

   86               <type>View</type>

   87             </control>

   88           </controls>

   89         </module>

   90         <module>

   91           <friendlyname>VolleyballPeople</friendlyname>

   92           <cachetime>0</cachetime>

   93           <controls>

   94             <control>

   95               <src>DesktopModules/VolleyballResults/Persons.ascx</src>

   96               <type>View</type>

   97             </control>

   98           </controls>

   99         </module>

  100         <module>

  101           <friendlyname>ResultDetails</friendlyname>

  102           <cachetime>0</cachetime>

  103           <controls>

  104             <control>

  105               <title>Result Detail</title>

  106               <src>DesktopModules/VolleyballResults/ResultDetail.ascx</src>

  107               <type>View</type>

  108               <supportspartialrendering>true</supportspartialrendering>

  109             </control>

  110           </controls>

  111         </module>

  112         <module>

  113           <friendlyname>LeagueTable</friendlyname>

  114           <cachetime>0</cachetime>

  115           <controls>

  116             <control>

  117               <title>League Table</title>

  118               <src>DesktopModules/VolleyballResults/LeagueTable.ascx</src>

  119               <type>View</type>

  120             </control>

  121           </controls>

  122         </module>

  123       </modules>

  124       <files>

  125         <file>

  126           <path>App_LocalResources</path>

  127           <name>EditVolleyballResults.ascx.resx</name>

  128         </file>

  129         <file>

  130           <path>App_LocalResources</path>

  131           <name>Settings.ascx.resx</name>

  132         </file>

  133         <file>

  134           <path>App_LocalResources</path>

  135           <name>ViewVolleyballResults.ascx.resx</name>

  136         </file>

  137         <file>

  138           <path>App_LocalResources</path>

  139           <name>vssver2.scc</name>

  140         </file>

  141         <file>

  142           <path>Documentation</path>

  143           <name>Documentation.css</name>

  144         </file>

  145         <file>

  146           <path>Documentation</path>

  147           <name>Documentation.html</name>

  148         </file>

  149         <file>

  150           <path>Documentation</path>

  151           <name>logo.gif</name>

  152         </file>

  153         <file>

  154           <path>Documentation</path>

  155           <name>vssver2.scc</name>

  156         </file>

  157         <file>

  158           <name>01.00.00.SqlDataProvider</name>

  159         </file>

  160         <file>

  161           <name>ClubResultsSecretaries.ascx</name>

  162         </file>

  163         <file>

  164           <name>ClubResultsSecretaries.ascx.vb</name>

  165         </file>

  166         <file>

  167           <name>Clubs.ascx</name>

  168         </file>

  169         <file>

  170           <name>Clubs.ascx.vb</name>

  171         </file>

  172         <file>

  173           <name>Competitions.ascx</name>

  174         </file>

  175         <file>

  176           <name>Competitions.ascx.vb</name>

  177         </file>

  178         <file>

  179           <name>Cycles.ascx</name>

  180         </file>

  181         <file>

  182           <name>Cycles.ascx.vb</name>

  183         </file>

  184         <file>

  185           <name>Divisions.ascx</name>

  186         </file>

  187         <file>

  188           <name>Divisions.ascx.vb</name>

  189         </file>

  190         <file>

  191           <name>EditVolleyballResults.ascx</name>

  192         </file>

  193         <file>

  194           <name>EditVolleyballResults.ascx.vb</name>

  195         </file>

  196         <file>

  197           <name>EventScoreAdjustments.ascx</name>

  198         </file>

  199         <file>

  200           <name>EventScoreAdjustments.ascx.vb</name>

  201         </file>

  202         <file>

  203           <name>Fixtures.ascx</name>

  204         </file>

  205         <file>

  206           <name>Fixtures.ascx.vb</name>

  207         </file>

  208         <file>

  209           <name>FixtureSelector.ascx</name>

  210         </file>

  211         <file>

  212           <name>FixtureSelector.ascx.vb</name>

  213         </file>

  214         <file>

  215           <name>LeagueTable.ascx</name>

  216         </file>

  217         <file>

  218           <name>LeagueTable.ascx.vb</name>

  219         </file>

  220         <file>

  221           <name>Persons.ascx</name>

  222         </file>

  223         <file>

  224           <name>Persons.ascx.vb</name>

  225         </file>

  226         <file>

  227           <name>PlayerRegistration.ascx</name>

  228         </file>

  229         <file>

  230           <name>PlayerRegistration.ascx.vb</name>

  231         </file>

  232         <file>

  233           <name>ResultDetail.ascx</name>

  234         </file>

  235         <file>

  236           <name>ResultDetail.ascx.vb</name>

  237         </file>

  238         <file>

  239           <name>SetScores.ascx</name>

  240         </file>

  241         <file>

  242           <name>SetScores.ascx.vb</name>

  243         </file>

  244         <file>

  245           <name>Settings.ascx</name>

  246         </file>

  247         <file>

  248           <name>Settings.ascx.vb</name>

  249         </file>

  250         <file>

  251           <name>Sports.ascx</name>

  252         </file>

  253         <file>

  254           <name>Sports.ascx.vb</name>

  255         </file>

  256         <file>

  257           <name>Squad.ascx</name>

  258         </file>

  259         <file>

  260           <name>Squad.ascx.vb</name>

  261         </file>

  262         <file>

  263           <name>TeamRegistration.ascx</name>

  264         </file>

  265         <file>

  266           <name>TeamRegistration.ascx.vb</name>

  267         </file>

  268         <file>

  269           <name>Teams.ascx</name>

  270         </file>

  271         <file>

  272           <name>Teams.ascx.vb</name>

  273         </file>

  274         <file>

  275           <name>BPL.dll</name>

  276         </file>

  277         <file>

  278           <name>DataServices.dll</name>

  279         </file>

  280         <file>

  281           <name>Uninstall.SqlDataProvider</name>

  282         </file>

  283         <file>

  284           <name>vssver2.scc</name>

  285         </file>

  286         <file>

  287           <path>[app_code]</path>

  288           <name>DataProvider.vb</name>

  289         </file>

  290         <file>

  291           <path>[app_code]</path>

  292           <name>SqlDataProvider.vb</name>

  293         </file>

  294         <file>

  295           <path>[app_code]</path>

  296           <name>VolleyballResultsController.vb</name>

  297         </file>

  298         <file>

  299           <path>[app_code]</path>

  300           <name>VolleyballResultsInfo.vb</name>

  301         </file>

  302         <file>

  303           <path>[app_code]</path>

  304           <name>VolleyballResults_Literals.vb</name>

  305         </file>

  306         <file>

  307           <path>[app_code]</path>

  308           <name>vssver2.scc</name>

  309         </file>

  310       </files>

  311     </folder>

  312   </folders>

  313 </dotnetnuke>


Best wishes,
- Richard
Agile Development Consultant, Practitioner, and Trainer
www.dynamisys.co.uk
 
Previous
 
Next
HomeHomeDevelopment and...Development and...DNN Platform (o...DNN Platform (o...Create Module Package - can it include my DLLCreate Module Package - can it include my DLL's?


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out