The project file could not be loaded

a new windows 8.1, VS2013 install ... I use skydrive to sync all my source files to a folder named c:\skydrive. When I try to open a .SIN file from the c:\skydrive folder I get an error in visual studio:
C:\Skydrive\c#\AutoCoder\AutoCoder.csproj : error  : The project file could not be loaded. The file cannot be accessed by the system.
  C:\Skydrive\c#\AutoCoder\AutoCoder.csproj
When I right click the .csproj file in windows explorer I do not see a security tab. Not sure if my user is authorized to the file or not.
How to open a project in VS2013 from my skydrive folder?
thanks,

Hi Steve,
Generally we could open the project from the skydrive folder, I often use it. As you said that it doesn’t work in your VS, I doubt that it would be related to this project.
Please delete the .suo file in your project folder, and then reopen the project file again (.csproje) again.
If possible, you could run your VS as the admin, and then open this project.
If still no help, maybe you could create a new project for it.
http://stackoverflow.com/questions/11171322/how-can-i-recover-a-corrupt-csproj-file-in-visual-studio-2010
Or you would contact the developer who created this project.
Best Regards,
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • The project file could not be loaded. name cannot begin with the '3' character hexadecimal value

    Hi, I get this error when I want to create a custom project (from Autodesk 3ds Max SDK 2014). I really dont understand the error, I dont use any '3' character in my project name

    Hi MegaJuzwa,
    Based on your description, it seems that it is not the VS IDE usage issue, am I right? If so, I'm afriad that it is not the correct forum for this issue.
    >>Autodesk 3ds Max SDK 2014
    It seems that it is the third party tool, if so, sorry for that it is really is out of support range of VS General forum. But I found that it also has his own support site. I suggest you post this issue to this forum:
    http://forums.autodesk.com/t5/3ds-max/ct-p/area-c1
    I also found the simliar thread in above site:
    http://forums.autodesk.com/t5/programming/getting-started-problems/td-p/4265618
    If I have misunderstood this issue, please feel free to let me know.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Error : The Project File can not be loaded

    Dear all,
    We have deleted the copernicus folder from my documents to remove cache.
    But now while opening my project i see error message like this
    please help!

    Hi Horst,
    Tried that not working.  Issue is that the file ".myproj" doesnot contain any data.
    and one of the ABSL file also contains not data.
    and if i try to refresh i get the error message "The solution was not opened correctly , please report incident to AP-RC-BDS-SOL.
    This is very frustratating .
    I have raised the incident with very high priority yesterday , but still no reply
    I think if i check on web ui my solution is working fine so they just need to send me those files again then if i try things will be synced again.

  • VBAI - LabView interface error - "The selected inspection could not be loaded", "Inspection File Error"

    I have been programming/interfacing VBAI2012 and LV2011 for two years already.
    There is one very frustrating problem:
    - Sometimes after changing some codes in VBAI, and I switch to Inspection Interface (by clicking File->Switch to Inspection Interface), there would be error saying "The selected inspection could not be loaded"
    - and then there is NO WAY to know what is going on. It does not tell you where the error is. Its so frustrating, you changed a couple of things, and the you have error switching to Inspection Interface, but then you don't know what is causing the error.
    Is there any log file which I can check?

    Guys,
    I have resolved this issue and successfully installed and configured jive forums on my laptop.
    I have documented high level steps on my blog http://orafusionmiddleware.blogspot.com (Non revenue generating, only for knowledge sharing)
    Cheers,
    Sandeep

  • The song...could not be used because the original file could not be located

    I just used Garageband this past Sunday, no problem...I open it up tonight and I get this message:
    "The song...could not be used because the original file could not be located."
    I click the OK button and it comes up with another song title, and I have clicked it 20 or 30 times already and it keeps coming up and I can't access anything else and it is frustrating!
    Anyone know how to stop the madness?!
    iMac 2.7 GHz Intel Core i5, 8 GB RAM, 1 TB HD, OS X 10.9.3
    Garageband 10.0.2

    "The song...could not be used because the original file could not be located."
    GarageBAnd cannot find the recorded media or imported audio files, that should be in the Media folder inside your project.
    Crtl-click the GarageBand icon in the Dock and use Force-quit to quit your current project.
    Then ctrl-click the .band file of your current project and select  "Show package contents." open the Media folder inside and check if all recorded media and imported audio files are there and you can play them.
    Have you moved your project or has it been transferred by mail?
    If the media are missing or do not play, there is not much you can do. If all media are there, repair the permissions of the project. If it is on an external drive, move it to your system drive and try there.
    If you cannot rescue the project, copy the media file out of the project, so you can use the recordings to recreate the song.You can launch GarageBand into the file "recent songs" panel to create a new project or to pick a recent project, by holding down  the alt/options key while double-clicking the GarageBand icon.

  • The MBean class could not be loaded by the default loader repositor

    Im trying to register a custom MBean to WebLogic 8.1 Sp5 Application Server but i get this error :
    The MBean class could not be loaded by the default loader repository .
    i have make a servelt that registers the Managed Bean i added the MBean jar file to the WAR file of the servelt and I added the Mbean jar file to the CLASSPATH in setEnv.cmd for the domain
    the code for the servlet is this :
    try
    Hashtable props = new Hashtable();
    props.put( Context.INITIAL_CONTEXT_FACTORY,
    "weblogic.jndi.WLInitialContextFactory" );
    props.put( Context.PROVIDER_URL, "t3://naiden:7001" );
    props.put( Context.SECURITY_PRINCIPAL, "admin" );
    props.put( Context.SECURITY_CREDENTIALS, "secret:)" );
    InitialContext ctx = new InitialContext( props );
    mbeanServer = ( MBeanServer )
    ctx.lookup( "weblogic.management.server" );
    logger.debug( "domain name e " + mbeanServer.getDefaultDomain() );
    catch( NamingException ne )
    error=ne.getMessage();
    logger.debug( ne.getMessage() );
    try {
    ObjectName objName = new ObjectName("isy:Name=NaidenStandardMBean");
    mbeanServer.createMBean("samplembean.Standard", objName);
    catch( MalformedObjectNameException ex )
    }

    You should use jre 1.5 or 1.6 for migmon from 7.10. It looks like your jre is 1.4.

  • The following files could not be found??

    All,
    Over Christmas I backed up my entire system to an external HD and then performed an erase and install of Tiger just to clean everything out. The transition has gone well until tonight . . . I went to open an older iDVD project I was working on and a box immediately came up that said "The following files could not be found . . ." It listed about 500 files including pics, audio, etc.
    It seems that when I reinstalled Tiger, my home directory and shortname is a little different this time than with the old OS. In essence, the only thing that needs to be changes is the username on all the files, but iDVD seems to be having trouble understanding this and finding the files. Does this make sense to anyone?
    For example, the path listed is Users/joebiedlingmaier/movies . . . etc.
    The new path on my current system is Users/jbiedlin/movies . . . etc.
    iDVD seems to have trouble recognizing that the file is in the name place, just with a different home directory name. Any ideas of how to get everything back in order? Even when it performs the search when I point iDVD to certain folders, it doesn't seem to recognize what it's looking for.
    -JB

    It won't help you now, but in the future do a File>Archive Project in iDVD to save all your assets in an archive. Since it includes copies of the actual files, instead of just links to those files, an archive file can be quite large.

  • FCP X can't import iTunes music - says "The song "Warp Factor" could not be used because the original file could not be located."

    FCP X can't import iTunes music - says "The song "XXXXX" could not be used because the original file could not be located."
    I saw the reply that iTunes was probably moved. I restored it from Time Machine when my hard drive crashed. How do I fix it to import into FCP X?

    I figured it out by going into iTunes and clicking on the Library link under File. This bring up a box that allows the music files to be reconnected to the iTunes music folder.
    FCP X now sees the music and it can be placed into the project timeline.

  • GETTING A MESSAGE IN ITUNES "The song "School Days" could not be used because the original file could not be found. Would you like to locate it?"

    GETTING A Message in itunes for evry song saying    The song “X” could not be used because the original file could not be found. Would you like to locate it?
    Do I need to erase the entire library and re load it, have over 200,000 songs?

    If it is just the one track, you need to re-link the file which iTunes needs to play when you select that track listing in iTunes.  Do this by saying "yes" when it asks you and then go to the file it should play.
    If it is doing this for many files then something has happened to cause a bunch of links to break.  Often it is something the user has done such as messing directly with the contents of the iTunes folder.  If that's the case, try undoing what you did.  if it is the case but not the cause then you will have to be a lot more detailed in posting about your setup and exactly what is happening.

  • The project file is not bound to source control, but the solution contains source control binding information for it.

    This may be more of a SQL Server Management Studio question, but I couldn't find a SSMS forum...
    I've got a database solution that contains several projects.  They're just to keep track of changes to stored procedures, triggers, views, etc in a few databases I maintain.  There is a problem with two of the projects though.  No matter what I do, I can't seem to get them bound to source control right.  When I open the solution, I get:
    The project file is not bound to source control, but the solution contains source control binding information for it.
    With two options, use solution binding and remove solution binding.  If I keep the solution binding, everything works fine.  But it's really annoying to have to deal with every time I open the solution.  If I remove the solution binding, the projects are now unbound again.  If I try to fix them (using the change source control or Add Selected Projects to Source Control options under the File->source control menu), I just end up in the same situation.  I've even tried deleting the projects and re-creating them from scratch, then re-adding them to VSS.  If I open the solution files in a text editor I can see the SCC tags in every project, but these two.  Since I can't manually add the tags, and Management Studio itself only seems to want to bind them the wrong way, I'm getting really frustrated.
    Can anyone point me toward a way to bind these so they work like the rest?

    However, that does not appear to be the ONLY cause of the problem.  I am a single user and only using TFS2010 and SSMS2008R2.  My issue is that I wanted a solution file for each project so that they could managed independently, and a super-solution
    file that contained all projects, so that I could perform system-wide searches and cross-checks.
    I solved the problem by:
    1. Choosing the option to use solution binding, then
    2. Adding another project to the solution.  This forced the re-write of the solution file.
    3. Adding another script to the project.  This forced the re-write of the project file.
    4. Checking in all changes.
    5. Deleting the new script and the extra project,
    6 Checking in all changes.
    This appears to have solved the problem.

  • The Following Files Could Not Be Imported (The File Is an Unrecognized Form

    I have a Kodak z712 and when I plug in the camera into my macbook, all i get is that the images are loading. They never do, and the screen just freezes.
    When I select any photo and click on import selected, I get the following error:
    The Following Files Could Not Be Imported (The File Is an Unrecognized Format)
    They are all .jpg format though so I don't know why it would say that.
    Any thoughts or advice on this would be a great help,
    Thanks
    Paul

    This issue is being discussed here: http://discussions.apple.com/thread.jspa?threadID=2479605&start=0&tstart=0 and it appears to be a 10.6.4 issue which happens when you have movies on the SD card.
    Felix T

  • In trying to update I received this message: Firefox 3.6.3(2).dmg.part could not be saved, because the source file could not be read.

    In trying to download an update I first received: "There were problems checking for, downloading, or installing this update. Firefox could not be updated because: No data was received (please try again)" It also gave a link to download manually. When I tried from the Firefox website I got: /Users/(deleted for privacy)/Desktop/Firefox 3.6.3(2).dmg.part could not be saved, because the source file could not be read.
    Try again later, or contact the server administrator. I tried this 3 times.
    == This happened ==
    Not sure how often
    == Mon around 11 am, central time, May 17, 2010

    I have tried downloading the file several times and get the same message: "No data received." I have no other system problems, I navigate well to other sites, but I'm unable to download this upgrade. Any suggestions?

  • There are about 8 songs in a playlist on itunes that are listed in the playlist but cannot be transferred to my ipod because it states: "..the original file could not be found." When I try to locate the song I get a list of the different music librar

    There are about 8 songs on a playlist that are listed in the playlist library but when I try to transfer them to the playlist, it states that they can't be transferred because the original file could not be found. Then it asks, do you want to locate the file but when I try that I get a few libraries but am not sure how to locate the particular songs. Some of the songs were purchased and some were transferred from a CD. I have seen the same question asked on the help page but haven't found an answer.
    Thanks.

    Hi dones49,
    It sounds like your issue here is that iTunes can not find the files for some of the songs you have brought into it. This happens occasionally even if the songs have not been moved from the location that iTunes places them on import or purchase. When you try to use the song, iTunes prompts you to find the file, as you have seen.
    To find the file, use the information in this article to navigate through the iTunes media folders -
    Locate and organize your iTunes files
    If you are still unable to locate the files, you may need to download them from the iTunes store again, or rip them from your CDs. See this article for assistance with downloading your past purchases -
    Download past purchases
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • On some of my files there is a ! in front of it, if I try to play the song, I get an error message; "The song "_____" could not be used, because the original file could not be found. Would you like to locate it?" Then when I click "Locate", I get nothing.

    I'm really dumbfounded on this one and it's driving me bonkers!!!! On some of my music files there is a ! in front of it, if I try to play the song, I get an error message; "The song "_____" could not be used, because the original file could not be found. Would you like to locate it?"
    This began to happen when Chuck made playlists2burn on2CD-and then he would delete the playlist; sending all the song files into oblivion. Certain songs have a ! right next to the file name, and as I stated before, i get that error message:
    "The song "_____" could not be used, because the original file could not be found. Would you like to locate it?"
    So I click on "Locate". No help. I get a menu with folders that say "catroot" and other folders which names I cannot remember, but I scroll PAST the file folders, & it's just a bunch of ".DLL" files.....I don't understand what any of the names of the folders mean...it's frustr8ing-coz this is my 2nd iTouch, my 1st one got stolen & I can't afford2buy my music back at this time & i NEVER before had a single problem with losing song file locations.
                  Is there anyone out there who has been through this frustrating game of chasing your tail?....<that's how I feel>
    If so I would be ever so gr8ful if maybe someone with the knowledge would be so kind as 2 tell me how/where 2 retrieve these songs & how to put everything back where it belongs, I would be 4ever gr8ful !!!
    I can't afford 2 replace the songs just like I'm unable 2 buy back my old music from my stolen iTouch....man that was an awesome collection-someday I'll be able 2 afford 2 do that & I would like 2 have all the new music that I paid 4 but cannot find when I got my new iTouch....that would just be  wonderful.
                 I hope someone sees this post that can help me retrieve these files....losing $100.00 of iTunes is a REAL BUMMER!!!!!!
                                                      ThanQ SO very much!
                                                                             [email protected] or [email protected] or [email protected] .
                                                                                               You can also find me on Facebook, my given name is Tiffinie Trimmer, &
                                                                                                that's my Facebook "handle".    ThanQ 4 taking the time 2 read all of this!
                                                                                                hope 2 get a reply someday....I'll B checking all my emails & my Facebook, as well
                                                                                                as marking this page in my FAVORITES so I can find it fast! Take Care!!!

    I was not complete clear.
    Since you never changed the settings in the advanced section of iTunes preferecnes, you have to chech that your music is really in the location setted in the folders reported in the advanced section.  If not you have 2 ways: reset the position of this folders or in the actual disk organisation or in the pointing on the preferences.
    If you press the reset button you just give to itunes its default setting as for the position of the music files: probably this will be a good choice if you have never changed any default preference.
    But before I would check the folders and see if the songs are really there
    In my iTune I have this, and I believe it is the default.
    Users/YOURHOMEFOLDERNAME/Music/iTunes/iTunes Music

  • Library Lost - Please HeIp I tried updating my old ipod & now all 10,000 songs in my library have an ! next to them and I get the error message "song " " could not be used because the original file could not be found" on every song I try to play

    Please help - this morning I tried updating one of my old ipods for my wife (this ipod hasn't been updated in 2-3 years).  I plugged it into my pc, it was recognized and the software updated.  I created a new playlist and tied to sync the ipod.  This ipod had never been used on this pc/itunes since the pc is only 2 years old.  When I tried to sync the ipod it stated that it would have to erase all the old songs on the ipod prior to syncing.  I clicked ok and it proceeded to wipe out the old ipod and sync the new playlist (~1000 songs).  When the sync was complete there were only 6 songs from the new playlist (all purchased this morning from itunes) on the ipod and to my horror all ~10,000 song on my pc in itunes now have a ! next to them.  Only my recent purchases from itunes do not.  When I click on a song with the ! I get the error message "the song " " could not be used because the original file could not be found."  How do I correct this issue - I am scared to hook my ipads or other ipods to my pc for fear of losing everything?!?!?  I spent 100s of hours burning the 10,000 songs from my cd collection and do not want to have to do it again. 
    Any help is greatly appreciated.

    This "original file cannot be found" thing happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, or that the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout,or vice-versa, and so is looking in slightly the wrong place.
    Select a track with an exclamation mark, use Ctrl-I to get info, then cancel when asked to try to locate the track. Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, or a drive letter has changed, it should be possible to reverse the actions.
    Alternatively, as long as you can find a location holding the missing files, then you should be able to use my FindTracks script to reconnect them to iTunes .
    tt2

Maybe you are looking for