Unable to open project in Visual Studio 2015 Preview

I have a problem with one of my solutions. It freezes the application on load. Visual Studio 2015 Preview works for all other projects and loads up correctly. But this one solution file doesn't load. Have anyone had this issue and what is the best way
to report it?

Thanks for pvdg42 's help.
Hi spoldman,
You would check whether your VS2015 version supports this kind of apps, or whether your VS IDE has the enough requirements to develop a specific app. 
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.

Similar Messages

  • Recommended way to unit test mobile cross platform C++ in Visual Studio 2015

    Hello,
    I'm playing with the new Visual Studio 2015 to check its capabilities for cross platform development using C++ as coding language. I've seen several videos in Channel9 about this feature but I don't remember hearing in any of these a word about how
    to unit test such projects from Visual Studio 2015. Is there some recommended way to create unit tests for such projects?
    I'm not sure I can use Visual Studio test projects for C++ to test the android library or the Windows Phone 8.1. If I add a new platform ARM to a test project of those, I cannot select in the platform toolset combo the values that I have for my libraries
    (Clang 3.4 and Windows 8.1 respectively). So it seems that such test projects are not addressed for cross platform c++ in VS2015.
    I also have tried to make a second cross platform library project to contain the tests, adding there the Catch.h file from catch framework or adding the files from Google Test framework. My idea was to link each cross platform test library with their corresponding
    "production code" libraries. In both cases (catch and gtest) I have problems when trying to compile the test framework files (not sure if it is not possible or just my fault being new at C++ for mobile platforms).
    Has anyone succeeded unit testing the cross platform c++ code in VS2015? How?
    Thanks in advance,
    Jorge.

    Hi Jorge,
    Thanks you for posting in MSDN forum.
    Based on your issue, since VS2015 Preview is previews for the next major release of Visual Studio, currently we forums don’t provide support for VS2015 Preview. So the product team would accept the suggestions or feedbacks for the VS2015 now.
    So you can submit the feedback/suggestions to Microsoft Connect feedback portal:
    http://connect.microsoft.com/VisualStudio/feedback/CreateFeedback.aspx, Microsoft engineers will evaluate them seriously. Thanks for your understanding.
    After you submit the feedback, you can post the link here which will be beneficial for other members with the similar issue. And I will help you to vote it.
    Thank you for your understanding.
    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.

  • Visual Studio 2015 compatibility with older versions

    Hi,
    I have already installed Visual Studio 2010 and 2013 on my Windows Server 2012.
    I want to know can I install Visual Studio 2015 on same machine? is there possible any conflict with older version?
    I have many projects in old version and need to open and work on them too.  Thanks.

    Hi,
    I have already installed Visual Studio 2010 and 2013 on my Windows Server 2012.
    I want to know can I install Visual Studio 2015 on same machine? is there possible any conflict with older version?
    I have many projects in old version and need to open and work on them too.  Thanks.
    You should be able to install Visual Studio 2015 alongside 2013 and 2010. However, I'd advise against it until the release version of Visual Studio 2015 becomes available. There may be issues down the road upgrading the preview version of VS 2015 with the final
    retail version.

  • Visual Studio 2015 CTP - Javascript support missing

    I had Visual Studio 2015 CTP 4 installed and now CTP6 - In both cases it was missing Javascript support.
    - Not showing syntax highlighting for .js file
    - Intellisense  not working for .js files
    Also when i go to tools/options/Text Editor - Javascript language section is missing. See  image and its comparison with VS2013.
    From the desk of Pinal Bhatt | http://www.PBDesk.com

    If
    you are
    not
    installed
    in the
    default
    folder,then go to C:\Program Files (x86)\Microsoft Visual Studio 14.0 copy to
    your
    install
    folder(ex.F:\Microsoft Visual Studio 14.0)
    open the
    Developer
    Command
    Prompt as administrator,run command:
    devenv /setup
    devenv.exe /InstallVSTemplates
    Reference
    articles:http://blog.lishewen.com/post/2015/03/03/vs2015-ctp6-after-installation-without-javascript-intellisense-solution-templates-and-editor
    算神的博客

  • Unable to open project file - from one 6.0.2 to another 6.0.3.

    Hi
    We're at a time-critical stage of finishing our movie, and we need to get the color-corrected sequence from the post-house to our studio so we can make some picture changes and get it back to them. They can open the project file just fine (it was created in 6.0.2, but they since updated their system to 6.0.3), and we have just updated to 6.0.3 also. Quicktime is 7.4.5 (which matches their version). However, they've FTP'd it to us, and we cannot open it here. FCP gives the error "Unable to open project file". It's not the "older version" message which I've seen before, it just ... fails to open it. Almost as if the file were corrupt. However, the post house can re-download the file from FTP and open it there, so this confuses me. I've also tried the file on a FCP 6.0 system (which I can't update because it's an Avid system locked to a certain version of Quicktime) and the same error message.
    Would anyone be willing to test the file and see if they can, at least, open it?
    Many thanks.
    Matt

    Have them zip the file... Project files via email often don't open if they aren't zipped..
    Jerry

  • Azure Webjob created in Visual Studio 2015 fails to run

    An Azure Webjob created in Visual Studio 2015 (any job, including the sample project) fails to run in an azure website with the following error:
    Job failed due to exit code -2146232576
    Note: the same project created in Visual Studio 2013 deploys and runs successfully.
    How can I fix the project in VS2015?

    Not the OP but I've the same problem.
    I created a continuously running webjob with the following code. The job runs perfectly fine locally.
    Program.cs
    static void Main()
    var host = new JobHost();// config);
    host.RunAndBlock();
    Functions.cs
    public static void ProcessQueueMessage([QueueTrigger("queue")] string message, TextWriter log)
    log.WriteLine(@"triggered job TriggeredWebJob");
    Here's the log from Azure WebJob:
    [03/16/2015 16:07:33 > 28695a: SYS INFO] Status changed to Starting
    [03/16/2015 16:07:34 > 9cb303: SYS INFO] Status changed to Starting
    [03/16/2015 16:07:34 > 28695a: SYS INFO] Run script 'TriggeredWebJob.exe' with script host - 'WindowsScriptHost'
    [03/16/2015 16:07:34 > 28695a: SYS INFO] Status changed to Running
    [03/16/2015 16:07:35 > 28695a: SYS ERR ] Job failed due to exit code -2146232576
    [03/16/2015 16:07:35 > 28695a: SYS INFO] Process went down, waiting for 60 seconds
    [03/16/2015 16:07:35 > 28695a: SYS INFO] Status changed to PendingRestart

  • Edit a local copy of Project in Visual Studio Without Setting "Edit" flag in TFS

    My local drive is mapped to TFS; every time I open up a project in Visual Studio and open up a file; the status of "Pending Changes" in TFS is updated to "Edit".  How do I avoid that to happen?

    Hi Shayaan,
    Since your local drive is mapped to TFS, seems it's as expected when edit a file of the project. Generally, when you edit the project on local machine, the project is check out automatically.
    If you still have concerns, you can also  check the workspace type you're using. Change it to a local workspace if you're using a server workspace. Or you can elaborate more details about your scenario, including TFS version and reproduce steps etc.
    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. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • I can't find the appx or xap package from windows app studio souce code in visual studio 2015

    I created a project from Windows App Studio then downloaded the source code and modify it. I set all configuration to Release Any CPU. But after rebuilding solutions several times there are no appx or xap package files found. How to create appx package
    from windows app studio source code using visual studio 2015?

    For that right click on the solution folder in Visual Studio, and you would find an option to create App Packages. 
    Hope this might help! 
    Create an app package
    Happy Coding!

  • "Unable to open project file" Error Message

    I pulled an all-nighter (13 hours of editing) last night to create a critical project in FCE 3.5.1 on my Intel iMac running 10.4.11 then left this afternoon for a few hours and shut down my machine. Came back tonight and tried to open the project (which I saved on my Maxtor 1 TB external drive along with all of the scratch disk files). To my absolute panic, it won't open the file now with an error message that simply says, "Unable to open project file". HELP!!!! Anyone have any suggestions?!?!

    In the past I found (and reported to Apple Feedback) the same bug Steve reports here, but I should recall that the problem:
    - only appeared in PAL projects (probably not the case for kscritch) - never heard of it in NTSC
    - was consistent in FCE 3.x, not so in FCE 4
    I made tests importing .psd images with transparency into PAL projects using FCE 4, and I had various behaviours: sometimes the project worked, sometimes I couldn't open the project again (as in FCE 3), sometimes I had error messages with inconsistent behaviour (msg like "file error", but the project opened and file was there...), etc. so I decided to do without.
    Now I only import .tif or .png images when I need transparency
    Piero

  • "Unable to Open Project File" - error

    Does anyone know how to resolve an "Unable to Open Project File" - error. I accidentally shut down my computer wrong, although Final Cut wasn't open.

    Welcome to the forums.
    The project file might have gotten corrupted. Look for the AUTOSAVE VAULT (typically in the DOCUMENTS>FINAL CUT PRO DOCUMENTS folder) and open the most recent version. Copy it to your main project folder if it works.
    If not, then try trashing your prefs with FCP Rescue.
    Shane

  • Error message" The file may be damaged or corrupted -1610153464/ also unable to open projects in the background 26:: 142

    Hello everyone,
    I hope someone can help me.
    I am using AE CC/Windows 7 on a Dell computer, 32 GB RAM, 64 bit op system, processors: Intel (R) Xeon (R) CPU x5670 @ 2.93 Ghz 2.93 Ghz (2 processors).
    So far I had worked on many projects with no problems and then a few weeks ago the project crashed non stop. The problem was overcome when I got rid of all MP3s and converted them to RAM. Again this was an issue I didn't have in the past and I don't recall changing anything.
    Now it seems it is impossible for me to export/render out a project into a Quick time file or even AVI. If its quick time I get this message: After Effects unable to render error  an output module failed. The file may be damaged or corrupted -1610153464 and if I am trying to export with AVI I get this message: AE unable to open projects in the background 26:: 142)
    This is happening with different projects.
    I read the forums and heard that the problem may be a Bug with quicktime and H.264? I never had a problem with it before but again when I try to export AVI I get this error message:
    AE unable to open projects in the background
    I have a feeling it is quick time related. I have uninstalled and reinstalled QT but still get the problem. It will open old QT files no problem. I tried to download a bug fix update as one post suggested but I think I have the latest which is why it didn't work. 
    This particular project has a couple of quick media H.264 files. Do I need to convert them? Are they the cause for all of this?
    I am sorry I really tried to look for answers in the forums before contacting you here but I cannot find a reason for all this mess, which again only appeared a few weeks ago with no problems for months...if someone can point out an area where I can start looking, I would really appreciate it. Thanks in advance.

    update: I converted all the H.264 footage which were in the project to WMV. And I was able to test export with AVI and it turne dout fine (like 10 seconds). However I still got the Error message: "After Effects unable to render error an output module failed, a filme may be corrupted or damaged.  Error-1610153464 " when I tried to export H.264 QT..
    I don't know what to do now, how can a problem which did not exist suddenly come up. How can I export a QT file? with AVI it will be massive!
    Many thanks
    Amanda

  • 'Unable to open project File' Please help....

    Help. Since yesterday, Final Cut Pro has been crashing every time I have tried to render something. I have used the FSC Maintenance Pack that has been recommended and ran Crash Analyser and Corrupt Clip Finder. No corrupt clips were found and the Crash Analyser fixed the problem for a while and I was able to work for a couple of hours. (prior to this I also removed some Motion files and that also temporarily stopped the crashing). I began working on my project again today, and the same thing started to happen. I kept having to turn everything off at the source until finally I gave up! Just before I turned it off I started running Autosave Cleaner but it seemed to freeze too so I Force Quit it. I have just turned it all back on again and to my horror, my project is not even opening. My other FCP projects are opening but not the one I am working on. I have no idea what to do. Final Cut opens and the message is 'Unable to open Project File'. I am so upset and really hope that someone out there can help.
    I run 10.5.8, I have 10 GB memory. All my clips are imported as XDCAM EX 720p25 (original format MPEG HD) but I have been working in this project for weeks without a problem.
    Thanks in advance
    Gill

    I don't know why it is set to the internal disk, but that is the default. That is not project related. It is system related (hence System Settings). So probably you started fcp one without the external disk attached. FCP forces you then to choose another scratch-, waveform-, thumbnail-, autosave location.
    Probably you've set it all to the internal disk then.
    Next time when the external disk was there again you might have only reset the scratch disk, but not your Autosave location... Just a thought.
    That is, IMHO, the disadvantage of system orientated scratch disk settings...
    Rienk

  • Unable to open project file

    Hello!
    I'm in desperate need of a miracle here. I've already read over other solutions to this problem, but perhaps someone can come up with something I haven't. I'm using Final Cut Pro 7.0.3, and I finished a project last month that took a lot of editing work. After the project finished, I cleaned up my folders as usual, copying over all the media and the FCP project file over to my network external hard drive. I then made the horrific mistake of deleting my autosave files. Little did I know I'd want to access the project later, and instead of opening and having to reconnect my media, it just comes up with the error of "unable to open project file".
    I've tried copying the project file I saved in November back to my local computer and opening it. I tried dismounting the network external hard drive and opening my local project file. I tried adding a .fcp to the end of the file's name. And I downloaded Pro Maintenance Tools in a hope that it could fix the corrupted file, it said it was fixed, but I still can't seem to open it. All my other FCP files are opening just fine.
    I'm also interested if anyone knows whether my deleting everything FCP created except for the project file might be why it crashed?
    Thank you in advance to anyone who even reads this hoping they can help.

    Sorry, I'm out of ideas. Perhaps someone else with greater tech skills will chime in on this and be able to suggest a solution. Deleting or changing the location of the files you mentioned earlier in the thread can certainly complicate and add time to  a new  edit but should not have caused the problem you've encountered in getting the project file to open.
    Good luck.
    Russ

  • "Unable to open project file" message in final cut express 3.5.1

    I have (well had now) a project with 3 video clips and multiple .psd files as stills. When the project contains just the 3 video clips and a couple of transitions I can save the project and quit Final Cut Express and relaunch FCE and when I try to re-open the same project, it opens just fine, without any problems and just the way I expected it to be. After editing the same project for a couple of hours and saving along the way (this has happened twice now and I don't think the length of time of editing matters) and adding multiple still images to the 3 video clips (this part is new in my working with FCE); I save and quit. When I return to open the same project I get the message "Unable to open project file" and click the OK button, which is my only option and I am given a new blank project. So where did my work go???

    Thank you for the response, but it hasn't worked yet...
    I read the link. I am working off my internal drive.
    I re-named the Capture Scratch folder, and any Render folders and then launched FCE. I was presented with a window that reads "To preserve the integrity of the data used by Final Cut Express HD, it is necessary to ensure the existance of the following path(s)" The path in the box below is where my project file and support files are. My 3 options are Quit, Check again and Reset Scratch disk. I choose the Reset Scratch Disk button and it took me to the Scratch Disk window and I Set/Created a new folder and clicked Choose and then OK back at the Scratch Disk window and Continue at the initial window... the Reset Scratch disk button is now labeled Continue. I am given a new Untitled Project work space. I tried to open my project file and once again with the message "Unable to open project file".
    Where did I go wrong???

  • "Unable to open project file." i need help! URGENT

    before the problem...
    my film project and all its files were in a WD external drive. i had some problems with soundtrack pro being too slow because the files were on an external drive, so i bought 2 Internal Seagate drives. i moved all my files to the internal drives, and i changed my scratch disk to my new drive.
    i have done this procedure several times before, and i never faced this problem before!
    after...
    so i went on to launch my FCP project, and while loading i got this message "Unable to open project file."
    how can i fix it?

    nope!
    but here is what i did:
    i reformatted it, and moved the files again... and surprisingly, it worked!
    computers have a mind of their own sometimes!
    but now i have another problem... i opened soundtrack pro to work on the same project, but its very slow! it keeps freezing whenever i want to make any actions.
    whats the problem? and how can i fix it?

Maybe you are looking for

  • Java cgi applet not working

    Hi guys, I have an applet that allows a user to "create" a datafile using buttons, to ensure consistency of input. I then want to write this file tto my webserver (it keeps the data for a soccer league, with basic stats). I know that applets can't wr

  • How can I get my Mac to recognise the í on my keyboard?

    Hi, I am trying to install a Hungarian Keyboard but there is no option for an extra key next to the left shift button. My mum wants to use the keyboard so I need all the corresponding keys to type what it says. When I plug the keyboard in it says "un

  • Urgent : Smart form tables

    I have a smartform with main window .Inthis main window i declared one table and it's working  fine .i need to add more functionality to smartform i created another table in main window were i  declared earlier  that place .it's goes to short dump an

  • Am having Siebel OLTP 7.8.2.14 and Siebel analytics applicaiton is 7.8.5.

    Hi I am having Siebel OLTP 7.8.2.14 and Siebel analytics applicaiton is 7.8.5. on solaris. we are planning to go for upgrade plat form + application upgrade to OBIEE 10g. 1) Do i have to do any patch on Siebel OLTP for obiee upgrade 2) first plat upg

  • No Youtube?

    Whenever I hit the youtube widget button, I get an error window that says "Cannot connect to Youtube." Doesn't work on EDGE or wifi, but every other internet feature works. Is anyone else having this problem or know what its happening?