Skip to content

Commit bab5c1a

Browse files
Moved the internal testing memcached server dll's into a memcached-server folder
1 parent 18a4724 commit bab5c1a

File tree

7 files changed

+4
-10
lines changed

7 files changed

+4
-10
lines changed

test/DotNetToolkit.Repository.Integration.Test/Data/TestMemcachedServer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
public static class TestMemcachedServer
88
{
9-
private static readonly string _basePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "tools");
9+
private static readonly string _basePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "tools\\memcached-server");
1010
private static readonly string _exePath = Path.Combine(_basePath, "memcached.exe");
1111

1212
public static IDisposable Run(int port = 11211, bool verbose = false, int maxMem = 512, bool hidden = true)

test/DotNetToolkit.Repository.Integration.Test/DotNetToolkit.Repository.Integration.Test.csproj

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@
4444
</ItemGroup>
4545

4646
<ItemGroup>
47-
<None Update="tools\default_engine.so">
47+
<None Update="tools\memcached-server\default_engine.so">
4848
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
4949
</None>
50-
<None Update="tools\libevent-2-0-5.dll">
50+
<None Update="tools\memcached-server\libevent-2-0-5.dll">
5151
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
5252
</None>
53-
<None Update="tools\libgcc_s_dw2-1.dll">
53+
<None Update="tools\memcached-server\libgcc_s_dw2-1.dll">
5454
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
5555
</None>
5656
<None Update="tools\memcached-server\memcached.exe">
@@ -59,12 +59,6 @@
5959
<None Update="tools\memcached-server\pthreadGC2.dll">
6060
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
6161
</None>
62-
<None Update="tools\memcached.exe">
63-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
64-
</None>
65-
<None Update="tools\pthreadGC2.dll">
66-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
67-
</None>
6862
</ItemGroup>
6963

7064
</Project>

0 commit comments

Comments
 (0)