Hi there,
I just created a DNN module for displaying, grading, and administering multiple choice quizzes.
I then use DNN 4.8.2's ability to create a module package to create a .zip file with my module. I noticed in the manifest that it created, it has absolute paths in many places. For instance:
<file>
<path>D:\dev\DnnDevelopment\DesktopModules\Hslda\Quiz</path>
<name>EditQuestion.ascx</name>
</file>
Is that correct? Should that path be relative, something like this?
<file>
<path>DesktopModules\Hslda\Quiz</path>
<name>EditQuestion.ascx</name>
</file>
The "DNN4 Module Developers Guide" doesn't use absolute paths when it shows the Survey.dnn file.