Forum member

lprichar

41 posts

Posts by lprichar

  1. The system cannot find the file specified

    I can try to reproduce in the sample project. In the meantime does any of this help? Log Name: Application Source: Microsoft-Windows-Immersive-Shell Date: 2/14/2014 6:38:07 PM Event ID: 5973 Task Category: (5973) Level: Error Keywords: User: …

  2. The system cannot find the file specified

    I installed the VS2013 2.5.0.3 msi and now none of the tests in my main project work. They all return "NCrunch was unable to retrieve a meaningful result from this test due to an unexpected error - was the execution process terminated?". NCrunch can run successfully on my test project, so it m…

  3. The system cannot find the file specified

    Hey Remco, I've duplicated this error in the "For Remco\NCrunchWin8Fail.sln" project that I've shared with you in the past on Dropbox. Hope that helps. Lee

  4. The system cannot find the file specified

    I think the async stuff makes the stack trace look bigger. I could simplify if you like. Either way I don't believe it's an implicit file dependency problem because the file is included in VS (with a build action of Content). Does NCrunch support include files with a build action of Content? Inc…

  5. The system cannot find the file specified

    Dear NCrunch, I have a unit test that passes in MSTest, but fails in NCrunch. The line it fails on is: return await StorageFile.GetFileFromApplicationUriAsync("ms-appx:///Assets/SomeFile.pdf"); This is a Windows 8.1 project. When I get the result back in the unit test I am not awaiting, i…

  6. The use of the Windows namespace is reserved

    That did it! The original error message I reported was from attempting #1. #2 did it. Thank you so much.

  7. The use of the Windows namespace is reserved

    Hey Remco, I was able to reproduce in a clean project. I shared the link with you on Dropbox. Please let me know if you did not receive it. Just to reiterate: the project under test needs to be built as x86 because one of the SDK's is build only for x86. I haven't referenced the offending…

  8. The use of the Windows namespace is reserved

    Well, running with the /p:Platform=x86 parameter ends up giving the same errors as I posted in #3 above. Results below. I would include the NCrunch generated project but I can't find it. I tried "Advanced->Browse to workspace last build for selected project" but it doesn't do anything. Maybe b…

  9. The use of the Windows namespace is reserved

    Hey Remco, I wish it were that easy. I've read over the document link and don't think it applies because we don't have any non-standard targets. I've included our .csproj file below. I've upgraded to nCrunch 2.0 and I get the same problem. By the way when I don't set the "Use build plat…

  10. The use of the Windows namespace is reserved

    Hey Remco, Sorry, my MSBuild skills are not so strong, I'm going to need a little more hand holding. When I open a "VS2013 x64 Cross Tools Command Prompt" and cd to "C:\Users\Lee\AppData\Local\NCrunch\5580\296\MyWin8Project" and run "msbuild.exe MyWin8Project.csproj" then I get: -------------…

  11. The use of the Windows namespace is reserved

    I am receiving errors building a Windows 8.1 app in nCrunch for Visual Studio 2013. I needed to set the "Use build platform" to x86 (x64 works too) in nCrunch settings to get it to build with the SQLite dependency, but that is the only customization I've made. I've looked through the common is…

  12. NCrunch Fails to build "Async for .NET Framework 4, Silverlight 4 and 5, and Windows Phone 7.5"

    Just the app.config. That fixed it in DeleteMe.sln and my real project. I didn't try the 1.47.0.1 build you mentioned.

  13. NCrunch Fails to build "Async for .NET Framework 4, Silverlight 4 and 5, and Windows Phone 7.5"

    Woot! That did it! Thank you Remco! Thought I'd tried that one already. For future reference the exact app.config file that fixes for the unit test project (once you've already added the PropertyGroup/AppConfig mentioned in Post #6 to your main project) is: <?xml version="1.0" encoding="utf-8…

  14. NCrunch Fails to build "Async for .NET Framework 4, Silverlight 4 and 5, and Windows Phone 7.5"

    Yes, outside factors is about all that's left I'm afraid. Which probably means if I build a clean VM it will work fine :(. Visual Studio 2012, and obviously .Net 4 (assuming we're both still working on the DeleteMe solution). I just submitted a bug report. Hopefully there's something in there …

  15. NCrunch Fails to build "Async for .NET Framework 4, Silverlight 4 and 5, and Windows Phone 7.5"

    You're right, it wasn't building in Visual Studio. I added the NuGet reference to "Async for .NET Framework 4, Silverlight 4 and 5, and Windows Phone 7.5" to the unit test project and now it compiles in Visual Studio, but still fails to compile in nCrunch. Interestingly, I noticed that it *does*…

  16. NCrunch Fails to build "Async for .NET Framework 4, Silverlight 4 and 5, and Windows Phone 7.5"

    It really isn't another problem. nCrunch was working fine until I added this dependency. And again, when I return null rather than returning TaskEx.WhenAll (my workaround), then everything works perfectly. I put NCrunch in compatibility mode as instructed, but as expected it still fails. By the …

  17. NCrunch Fails to build "Async for .NET Framework 4, Silverlight 4 and 5, and Windows Phone 7.5"

    Remco, thank you so much for the detailed analysis. I'm sorry for the delay. I found a temporary workaround (return null, and just don't check in that file), but I would like to solve it for real. Well, that and I'm not getting e-mail notifications on this forum despite having signed up for them.…

  18. NCrunch Fails to build "Async for .NET Framework 4, Silverlight 4 and 5, and Windows Phone 7.5"

    FYI I tried loading my DeleteMe.sln project on a second, nearly new computer and it gets the same problem. One more possible difference between our environments: I use ReSharper. That's the only other plugin I have installed on the newer computer.

  19. NCrunch Fails to build "Async for .NET Framework 4, Silverlight 4 and 5, and Windows Phone 7.5"

    Thanks for the response and analysis Remco. I would imagine my main project would be harder to debug. I am surprised about the conflicting MVC versions, that shouldn't be the case, I'll look into it. But for now let's focus on the simple out of the box project that I mentioned in post #2. Sinc…

  20. NCrunch Fails to build "Async for .NET Framework 4, Silverlight 4 and 5, and Windows Phone 7.5"

    FYI you can reproduce this from scratch in Visual Studio 2012 like this: 1. Create a New project of type "ASP.NET MVC 3 Web Application" using .NET Framework 4 2. Add a reference via Nuget to "Async for .NET Framework 4, Silverlight 4 and 5, and Windows Phone 7.5" 3. Create a class and method a…