Forum member

Leonid

7 posts

Posts by Leonid

  1. Files copied in imported .targets file do not get copied into NCrunch workspace

    I ran into this NCrunch bug (or at least difference from VS build): 1. Create a class library ClassLibrary1 and a unit test project UnitTestProject1, with UnitTestProject1 referencing ClassLibrary1. 2. Create a folder "Targets" as a sibling to ClassLibrary1/UnitTestProject1 folders, and call i…

  2. NCrunch error when using Windows Runtime Components

    Repro is: Visual Studio 2013 Update 2 NCrunch v2.7.0.5 1. Create a new "Visual C#/Store Apps/Windows Apps/Blank App (Windows)" project 2. Add to the solution a new "Other Languages/Visual C++/Store Apps/Windows Apps/Windows Runtime Component (Windows)". 3. From the App1 project, reference …

  3. NCrunch Failing to comple .Windows & .WindowsPhone projects inside Universal Application solution

    Derek, are you sure you put <Link /> in the right place? That solution works for me for a blank project, and no exception. Another straightforward way to workaround is to copy app.xaml* from projitems and paste them into each Windows and WindowPhone projects. You can either physically move the …

  4. CodeAnalysisRuleSet path does not get copied to workplace

    Additionally, the .ruleset file can have: <RuleHintPaths> <Path>..\Some\Other\Relative\Path</Path </RuleHintPaths> And we had to do "Additional Files to Include" on that too.

  5. CodeAnalysisRuleSet path does not get copied to workplace

    Here is another path that does not get copied: <CodeAnalysisRuleSet>..\..\something</CodeAnalysisRuleSet> Can be worked around by "Additional Files to Include", but should be copied by default. Thanks! Leonid

  6. NCrunch does not copy ExtensionSDK files

    Looks like NCrunch doesn't know about ExtensionSDKs and doesn't copy those to its workspace. Here is some info: http://msdn.microsoft.com/en-us/library/vstudio/hh768146.aspx#ExtensionSDKs I ran into this because I used this for my project: http://visualstudiogallery.msdn.microsoft.com/772a…

  7. $(MSBuildThisFileDirectory) is not supported?

    We are using [b]$(MSBuildThisFileDirectory)[/b] like in this example from MSDN: http://msdn.microsoft.com/en-us/library/dd633440.aspx [quote]<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), EnlistmentInfo.props))\EnlistmentInfo.props" Condition=" '$([MSBui…