Hi,
I'm trying to release my module created using the "DotNetNuke 7 C# Compiled Module" template for Visual Studio 2012 (.Net framework 4).
When i build all in Release mode there are no errors but in the MyModule/packages folder i can't find the two files (DNNMyModuleInstall.zip e DNNMyModuleSource,zip) that i expect to have. I have only a folder "MSBuildTasks.1.4.0.45" and a repositories.config file.
I have two warnings:
-Warning 1 Assembly generation -- The version '00.00.01.*' specified for the 'file version' is not in the normal 'major.minor.build.revision' format
-Warning 2 The element 'Target' in namespace '
http://schemas.microsoft.com/develope...' has invalid child element 'XmlRead' in namespace '
http://schemas.microsoft.com/develope...'. List of possible elements expected: [..]
My ModulePackage.targets file contains in the highlited section this:
<Target Name="PackageModule" Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<XmlRead Prefix="n"
Namespace="
http://schemas.microsoft.com/develope..."
XPath="dotnetnuke/packages/package[1]/@version"
XmlFileName="$(DNNFileName).dnn">
<Output TaskParameter="Value" PropertyName="Version" />
</XmlRead>
I hope you can help me so i can release my module zipped packages,
Thank you and have a nice day.