I want to create two distinct nuget packages in order to make some prebuild stuff on my project. The custom target files associated to the NuGet packages have both a BeforeBuild Target:
<Target Name="BeforeBuild"> <Exec Command='...' /> </Target> I noticed that the BeforeBuild target get executed just once, this sounds correct but in my scenario, where I want two pre build steps added by packages, how the problem could be solved?
Thanks