<Reference Include="Microsoft.TeamFoundation.VersionControl.Client, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> <Private>false<Private> <HintPath>d:\temp\Microsoft.TeamFoundation.VersionControl.Client.dll<HintPath> </Reference>
<Reference
Include="Microsoft.TeamFoundation.VersionControl.Client,
Version=8.0.0.0, Culture=neutral,
PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=x86">
<SpecificVersion>False</SpecificVersion>
<Private>false<Private>
<HintPath>d:\temp\Microsoft.TeamFoundation.VersionControl.Client.dll<HintPath>
</Reference>
$/MyProj2 │ ├───CustomLibrary │ │ CustomLibrary.sln │ │ CustomLibrary.vssscc │ │ │ ├─── CustomLibrary │ │ │ CustomLibrary.csproj │ │ │ CustomLibrary.csproj.vspscc │ │ │ MyLibrary.cs │ │ └───Properties │ │ AssemblyInfo.cs │ ├───CustomApplication │ │ CustomApplication.sln │ │ CustomApplication.vssscc │ │ │ ├─── CustomApplication │ │ │ CustomApplication.csproj │ │ │ CustomApplication.csproj.vspscc │ │ │ Program.cs │ │ └───Properties │ │ AssemblyInfo.cs │ ├───binaries
$/MyProj2
│
├───CustomLibrary
│ │ CustomLibrary.sln
│ │ CustomLibrary.vssscc
│ │
│ ├─── CustomLibrary
│ │ │ CustomLibrary.csproj
│ │ │ CustomLibrary.csproj.vspscc
│ │ │ MyLibrary.cs
│ │ └───Properties
│ │ AssemblyInfo.cs
├───CustomApplication
│ │ CustomApplication.sln
│ │ CustomApplication.vssscc
│ ├─── CustomApplication
│ │ │ CustomApplication.csproj
│ │ │ CustomApplication.csproj.vspscc
│ │ │ Program.cs
├───binaries
<Reference Include="CustomLibrary, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>..\..\binaries\CustomLibrary.dll</HintPath> </Reference>
Include="CustomLibrary, Version=1.0.0.0,
Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\binaries\CustomLibrary.dll</HintPath>
<Target Name="AfterBuild"> <Exec Command="xcopy /Y /S /F $(TargetPath) $(SolutionDir)..\binaries" /> </Target>
<Target Name="AfterBuild">
<Exec
Command="xcopy /Y /S /F $(TargetPath) $(SolutionDir)..\binaries" />
</Target>
<AdditionalReferencePath Include="$(SolutionRoot)\Binaries ">
<AdditionalReferencePath
Include="$(SolutionRoot)\Binaries ">
From:- <CreateProperty Condition=" '@(AdditionalReferencePath)'!='' " Value="$(OutDir)%3B@(AdditionalReferencePath)" ... To:- <CreateProperty Condition=" '@(AdditionalReferencePath)'!='' " Value="$(OutDir);@(AdditionalReferencePath)" > ...
From:-
<CreateProperty
Condition=" '@(AdditionalReferencePath)'!='' "
Value="$(OutDir)%3B@(AdditionalReferencePath)"
...
To:-
Value="$(OutDir);@(AdditionalReferencePath)" >