Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can I safely move ReferencePath information from a .vbproj.user (or .csproj.user) file into the corresponding project file?

Will this break anything?

Note: All developers will be using developing from the same location on their machines.

We'd like to allow users to maintain their own settings for other things, but have this basic info be setup once and checked into source control to be shared to all.

share|improve this question
Why can't you rely on the <HintPath> for an assembly reference? – Hans Passant Nov 28 '11 at 14:23

1 Answer

up vote 0 down vote accepted

Yes, you can absolutely do this. In fact, we have all external assemblies in directories relative to the project to ensure that developer-specific updates don't cross-contaminate the projects.

In the project files, all of our references to non-.net framework assemblies are specified similar to the following:

<Reference Include="ICSharpCode.SharpZipLib">
  <SpecificVersion>False</SpecificVersion>
  <HintPath>..\..\Assemblies\ICSharpCode.SharpZipLib.dll</HintPath>
  <Private>False</Private>
</Reference>

This takes a little discipline to start with, but ultimate makes the projects portable and update-safe.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.