We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
They have different search paths.
xbuild:
SearchPaths: {CandidateAssemblyFiles} {HintPathFromItem} {TargetFrameworkDirectory} {PkgConfig} {GAC} {RawFileName} ./bin/
msbuild:
AssemblySearchPaths = {CandidateAssemblyFiles}; ; {HintPathFromItem}; {TargetFrameworkDirectory}; {Registry:Software\Microsoft\.NETFramework,v4.0,AssemblyFoldersEx}; {AssemblyFolders}; {GAC}; {RawFileName}; ./bin/
note that msbuild doesn't search in "{PkgConfig}" search target.
The text was updated successfully, but these errors were encountered:
constants in xbuild https://github.com/mono/mono/blob/master/mcs/class/Microsoft.Build.Tasks/Microsoft.Build.Tasks/AssemblyResolver.cs#L509 code for searching an assembly: https://github.com/mono/mono/blob/master/mcs/class/Microsoft.Build.Tasks/Microsoft.Build.Tasks/AssemblyResolver.cs#L255
constants in msbuild https://github.com/Microsoft/msbuild/blob/master/src/Tasks/AssemblyDependency/AssemblyResolutionConstants.cs
release notes from mono-5.0.0: http://www.mono-project.com/docs/about-mono/releases/5.0.0/#msbuild (it says that msbuild is shipped with mono)
Sorry, something went wrong.
No branches or pull requests
They have different search paths.
xbuild:
msbuild:
note that msbuild doesn't search in "{PkgConfig}" search target.
The text was updated successfully, but these errors were encountered: