I am working with another developer on a project. We have a class that references a file path. Both of us have different file paths that we want to point to in our computer, which has resulted in a source control war where we both keep checking in and overwriting the others file path by accident.
What is the best practice to do this? Hopefully there is some Visual studio or TFS magic?
public class FilePaths
{
public string Path{ get; set; }
public NLPComponentFilePaths()
{
Path= @"C:\Users\username\Documents\mydll.dll";
}
}