我有一个C#解决方案,包含许多项目。 每个项目都提到某一具体文件夹中的一些手.。 根据MSDN,我们可以在项目---> Property-> Reference Paths中增加一个项目的参考途径。 它将在该项目下产生一个包含以下内容的用户档案:
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ReferencePath>C:Referencesin</ReferencePath>
</PropertyGroup>
</Project>
But this only works for one project alone. Is there a simple way to apply the same setting to all of the projects in the solution?