Rank: Member
Groups: Registered
Joined: 4/19/2014(UTC) Posts: 17 Location: United Kingdom
Thanks: 9 times Was thanked: 2 time(s) in 2 post(s)
|
Ok, it's working but I have no real idea why - I changed Embed Interop Types to true, VS build failed, changed it back to false and VS and NCrunch builds both succeed. Doing so made a slight modification to the project file From this: Code:
<Reference Include="ICSharpCode.AvalonEdit, Version=5.0.1.0, Culture=neutral, PublicKeyToken=9cc39be672370310, processorArchitecture=MSIL">
<HintPath>..\packages\AvalonEdit.5.0.2\lib\Net40\ICSharpCode.AvalonEdit.dll</HintPath>
<Private>True</Private>
</Reference>
To this: Code:
<Reference Include="ICSharpCode.AvalonEdit, Version=5.0.1.0, Culture=neutral, PublicKeyToken=9cc39be672370310, processorArchitecture=MSIL">
<HintPath>..\packages\AvalonEdit.5.0.2\lib\Net40\ICSharpCode.AvalonEdit.dll</HintPath>
<Private>True</Private>
<EmbedInteropTypes>False</EmbedInteropTypes>
</Reference>
And now NCrunch can build it just fine ....
|