Browse Source

Work around MSBuild bug: log4net.dll is not copied to the unit test output directory (and copying some other libraries just in case...)

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@842 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 20 years ago
parent
commit
37b426ac39
  1. 16
      src/Main/Base/Test/ICSharpCode.SharpDevelop.Tests.csproj

16
src/Main/Base/Test/ICSharpCode.SharpDevelop.Tests.csproj

@ -71,6 +71,22 @@ @@ -71,6 +71,22 @@
<Link>ICSharpCode.SharpDevelop.dll</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="..\..\..\..\bin\log4net.dll">
<Link>log4net.dll</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="..\..\..\..\bin\ICSharpCode.Core.dll">
<Link>ICSharpCode.Core.dll</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="..\..\..\..\bin\WeifenLuo.WinFormsUI.Docking.dll">
<Link>WeifenLuo.WinFormsUI.Docking.dll</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="..\..\..\..\bin\ICSharpCode.TextEditor.dll">
<Link>ICSharpCode.TextEditor.dll</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
</Project>
Loading…
Cancel
Save