-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
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
Project files not found by AssemblyInfoPatcher if in different directory from solution #64
Comments
This should work, do you have the full stack of the error you get ? ( Thx ! |
It's not very informative, but here's the output from
|
This error suggest you configured msbuild task with:
It also doesn't seem to be relevant to the assembly info patcher task, so you'll probably still have the error if you remove the task (do you ?). |
There are other problems - the msbuild command that is run does not appear to honor the Visual Studio version specified in the solution file. Here are the first few lines of the solution file:
...note that it is a Visual Studio 2010 solution. But, here is the output from
...it appears to be using whatever the latest version of Visual Studio is installed on the system, rather than what's specified in the solution file. This is the msbuild config in
|
Curioser and curioser. When I remove the patcher config, the But, I should have checked the Not sure what the message is telling me, but it appears to be a red herring. Unfortunately, I can't get it to run the right version of |
Should I open a separate issue for the |
You can configure the msbuild version like that:
Regarding the other error I'm out of guesses sorry. |
I have a source tree like so, where the solution file defines the paths to its constituent projects:
This minimal configuration appears to successfully build every project in the solution:
And, I was hoping that setting the assembly versions for all of the projects would be as simple as:
...but no matter what I configure for the patcher, even if I omit the
projects
configuration, the patcher always complains:So, it appears that the patcher is not expecting or using the path information that is specified in the project entries for the solution file.
The text was updated successfully, but these errors were encountered: