I am using a makefile to compile my C # project. In this makefile, I create the tools.dll library that calls csc.exe, OK.
Now I want to use this .dll in my project. For some reason, I have to use MSBuild.exe, which use the .csproj file. In the .csproj file, I added this section:
<Reference Include="TOOLS"> <HintPath>C:\Gen\Lib\TOOLS.dll</HintPath> </Reference>
It works great!
But my question is: How to add the tools.dll link from the MSBuild command line?
I need to call MSBuild.exe in the makefile and provide it with the path to the tools.dll file
source share