Which one is correct approach for assembly reference in csproj file?
问题 In my one of the MSI Installer I am updating the assembly and project reference relative path pro-grammatically.My all reference assemblies inside my application folder. I try to implement both the path relative and absolute path. Both are working fine. Relative Path <Reference Include="log4net"> <HintPath>..\..\..\..\log4net.dll</HintPath> </Reference> Absolute path <Reference Include="log4net"> <HintPath>C:\Program files\Myapplication\log4net.dll</HintPath> </Reference> I have only seen