[v3.12.0.15]
I have a nlog config file in directory A, then I include it "as link" in my test project, and set it to be copied to output if newer, resulting in something like below
Quote:
<ItemGroup>
<None Include="..\CommonFiles\nlog.config" Link="nlog.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
When I build this with vstudio I see the nlog.config ending up in output directory, but when NCrunch is building it is not placed in the NCrunch workspace directory and the tests fail.
If I include the file "normally" (without as link) it all works well.
Is this behavior by design?
Thanks.