I'm newbie here on Visual Studio/NuGet/packages, etc.
If anyone can point to any errors/mistakes I'm making, that will be greatly appreciated.
I'm trying to use MSBuildTasks on VS 2013... I've downloaded it using the NuGet Package Manager but getting the same initial error on this thread - TfsVersion task was not found.
I run Install-Package MsbuildTask on package manager and it says is already installed. (v. 1.4.0.88)
The files (MSBuild.Community.tasks.dll and MSBuild.Community.Tasks.targets) were on my $(SolutionDir)\.build instead of c:\Program Files(x86)\MSBuild\12\bin
I tried manually copying the files back to msbuild bin folder, but still no success..
Here's the snipped from my msbuild:
<PropertyGroup>
<MSBuildCommunityTasksPath>$(SolutionDir)\.build</MSBuildCommunityTasksPath>
</PropertyGroup>
<Import Project="$(SolutionDir)\.build\MSBuild.Community.Tasks.Targets"/>
thanks,
Marcelo.