vote up 1 vote down star
1

I'm a new to MSBuild and wanted to play around with it a bit, but I just cannot figure out why this isn't working.

So my solution has two projects: "Model" and "BuildTasks". BuildTasks just has a single class:

using Microsoft.Build.Utilities;

namespace BuildTasks
{
    public class Test : Task
    {
    	public override bool Execute()
    	{
    		Log.LogMessage( "FASDfasdf" );
    		return true;
    	}
    }
}

And then in the Model.csproj I've added this:

  <UsingTask TaskName="BuildTasks.Test" AssemblyFile="$(SolutionDir)src\BuildTasks\bin\BuildTasks.dll" />
  <Target Name="AfterBuild">
    <Test />
  </Target>

I've set up the build order so "BuildTasks" gets built before "Model". But when I try to build Model I get this error:

The "BuildTasks.Test" task could not be loaded from the assembly C:\WIP\TestSolution\src\BuildTasks\bin\BuildTasks.dll. Could not load file or assembly 'file:///C:\WIP\TestSolution\src\BuildTasks\bin\BuildTasks.dll' or one of its dependencies. The system cannot find the file specified. Confirm that the <UsingTask> declaration is correct, and that the assembly and all its dependencies are available.

This file definitely exists, so why can't MSBuild find it?

I've even tried hard-coding "C:\WIP\TestSolution" in place of "$(SolutionDir)" and get the same error. However, if I copy that .dll to my desktop and hard-code the path to my desktop, it DOES work, which I can't figure out why.

EDIT: I don't have the path wrong. I modified the Debug/Release builds for BuildTasks to output the .dll to just the bin folder since I didn't want Debug/Release to have different paths.

flag

50% accept rate
Did you manage to solve the problem? I am having the same issue. – seanlinmt May 3 at 17:18

3 Answers

vote up 0 vote down

Are you sure you have your path write? Shouldn't it be in the bin\Configuration Type\BuildTasks.dll?

I found this link: http://bartdesmet.net/blogs/bart/archive/2008/02/15/the-custom-msbuild-task-cookbook.aspx very helpful when starting to write MSBuild tasks.

link|flag
vote up 0 vote down

Slace had it right. You more than likely have your path to the assembly wrong. And it should probably be:

<UsingTask 
    TaskName="BuildTasks.Test" 
    AssemblyFile="$(SolutionDir)src\BuildTasks\bin\$(Configuration)\BuildTasks.dll" />

<Target Name="AfterBuild">
    <Test />
</Target>
link|flag
vote up 0 vote down

You might try fuslogvw to diagnose the issue, thought I'm unclear if it's getting that far...

http://msdn.microsoft.com/en-us/library/e74a18c4.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.