I'm trying to start using MSBuild Community Tasks
, so right after installing the .msi
package, I imported MSBuild.Community.targets
into the <Project>
element as follows:
<Import Project="lib\MSBuild.Community.Tasks.targets" />
Interestingly, I noticed that such a file has a link to the local installation path in MSBuildExtensionsPath
and provided that instead of saving the code dependencies as clean as possible, Iām ready to pay the distribution overhead / version with each project, I was interested to know is it possible to override the default location / installation with relative to the project in the .cproj
file?
The actual layout will look like this:
Dotnet.Samples.Foobar \src Foobar.cs \lib MSBuild.Community.Tasks.targets MSBuild.Community.Tasks.dll
Any guidance would be truly appreciated. Many thanks to advace for any suggestion you might want to share.
source share