Forum member

partnerinflight

8 posts

Posts by partnerinflight

  1. NCrunch 1.33b occasionally fails to build an assembly, but provides no error information

    Actually you know, this seems to work ok. The issue I was concerned about was that intellisense, and ReSharper, appear to treat a.cs when opened from inside A.SL.csproj as SL code, and color their compilation warnings/errors accordingly. nCrunch though appears to not care where the file is opened fr…

  2. NCrunch 1.33b occasionally fails to build an assembly, but provides no error information

    Not exactly. So we actually have two separate projects, like A.Silverlight.csproj (SL project) a.cs b.cs c.cs A.CrossTarget.csproj (.net project) ->a.cs ->b.cs ->c.cs where -> represent links to .cs files. (the "Use Existing" option when adding files to a proje…

  3. NCrunch 1.33b occasionally fails to build an assembly, but provides no error information

    You know, the way we address the lack of UT support in Silverlight is we simply create a CrossTarget project that links to the SL files, and run UTs on that project. This works great, except nCrunch has to be able to understand this semantic -- when working in a file X, see if X is linked from a .NE…

  4. NCrunch 1.33b occasionally fails to build an assembly, but provides no error information

    Ah, yes. I do see info in the queue window. So what's the ETA for getting this working? ;) [11:16:53.1602-BuildTask-45] ERROR (Internal): System.InvalidOperationException: Cannot modify an evaluated object originating in an imported file "C:\Program Files (x86)\MSBuild\Microsoft\Silverlight for P…

  5. NCrunch 1.33b occasionally fails to build an assembly, but provides no error information

    yup, SL on WP7. Processing queue window?

  6. Failing build projects that have custom .targets files

    Thanks. The solution does work, however it's not terribly practical. My solution has 60 projects in it. Setting this for every project is too onerous, given that only relative paths appear to work, and they have to be adjusted for each project. (Plus how do you migrate these settings to other dev…

  7. NCrunch 1.33b occasionally fails to build an assembly, but provides no error information

    Still seeing this issue on 1.35.0.16b. Filed a bug. Basically have a WP7 solution with 6 projects. 4 fail to build with no error info, and red Xs; two just have question marks. Any ideas?

  8. Failing build projects that have custom .targets files

    Hi gang: So the projects in my solution include custom .targets files, through the Import directives, like so: <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), `msbuildroot.marker`))\build\base\crosstarget.settings.targets" /> Basically this walks up m…