Reputation: 21
I have a project that I successfully pushed to GitHub and made several commits to. Once I added a 2nd project to the solution, I ran into an issue when pulling the repo down.
I do not think the second project has been added to the github repository properly and when I try to download the repo I am seeing "Filename could not be loaded", referring to the 2nd project that was added.
Could someone provide some direction for me on how to solve this?
Screenshot of the error
EDIT: Link to our github repository: https://github.com/tux-superman/VitekSky
Upvotes: 1
Views: 112
Reputation: 1323753
Your VitekSky.sln
#L8 includes:
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VitekAPI", "..\VitekAPI\VitekAPI.csproj", "{98C68D33-AAAD-40B6-86F3-C4D1DEC76032}"
EndProject
It will look for a ..\VitekAPI\VitekAPI.csproj
which would be outside your current Git repository.
If both projects are versioned, they should be versionned in the same GitHub repository (which currently does not include any VitekAPI folder)
Upvotes: 1