D:\Projekt\html5-boilerplate-for-umbraco\Package.build.xml(49,2): error MSB4036 : The "ManifestUpdate" task was not found. Check the following: 1.) The name of the task in the project file is the same as the name of the task class. 2.) Th e task class is "public" and implements the Microsoft.Build.Framework.ITask int erface. 3.) The task is correctly declared with <UsingTask> in the project file , or in the *.tasks files located in the "C:\Windows\Microsoft.NET\Framework\v2 .0.50727" directory. Done Building Project "D:\Projekt\html5-boilerplate-for-umbraco\Package.build.x ml" (default targets) -- FAILED.
I don't really know what I'm doing here. You're free to call me an idiot. You can find the whole project here.
well, exception is quite clear, there's a reference to a msbuild task but it can't find it.... ManifestUpdate is a msbuild custom task written by Matt, and is included in the uComponents package, so suggest to take a look how it's been done in their build file.
Anyway, you'll need an extra dll (which is holding the custom msbuild task) and let msbuild know where/how to find that ManifestUpdate build task.
MSBuild errors
I've been trying to get MSBuild to work but i got stuck. I'm using Matt's tutorial. This is the code i have now:
And when i run it i get this error message:
I don't really know what I'm doing here. You're free to call me an idiot. You can find the whole project here.
well, exception is quite clear, there's a reference to a msbuild task but it can't find it.... ManifestUpdate is a msbuild custom task written by Matt, and is included in the uComponents package, so suggest to take a look how it's been done in their build file.
Anyway, you'll need an extra dll (which is holding the custom msbuild task) and let msbuild know where/how to find that ManifestUpdate build task.
Start here
Cheers,
/Dirkj
Thanks for the pointer Dirk!
Edit: Cool cool cool! Got it working! Double thanks.
is working on a reply...