Program Files (x86)\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets(1819,5): warning MSB3245: Could not resolve this reference. Could not locate the assembly " ". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Azure Error
I faced this problem during development of application https://www.qfles.com Program Files (x86)\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets(1819,5): warning MSB3245: Could not resolve this reference. Could not locate the assembly "PageOne.Dependency". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. [D:\home\site\repository\QflesAdmin\QflesAdmin.csproj] This Error I was facing when I was deploying the Code to Azure from GitHub. Problem - Your Solution referring the dlls by HintPath like this. <Reference Include="PageOne.PD"> <HintPath>..\PageOne.PD\bin\Debug\PageOne.PD.dll</HintPath> </Reference> <Reference Include="PageOne.Services"> <HintPath>..\PageOne.Services\bin\Debug\PageOne.Services.dll</HintPath> </Reference> Solution - It should not refer the dlls by hint Path. It shou