Skip to content

Commit 8899603

Browse files
committed
chore: Move the bloomfilter. Redis.Test to the Test directory
1 parent 5145a69 commit 8899603

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
lines changed

BloomFilter.NetCore.sln

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PerformanceTest", "test\Per
1717
EndProject
1818
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BloomFilter.Redis", "src\BloomFilter.Redis\BloomFilter.Redis.csproj", "{4A858860-7405-43F4-9132-0DF40BADBDAD}"
1919
EndProject
20-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BloomFilter.Redis.Test", "BloomFilter.Redis.Test\BloomFilter.Redis.Test.csproj", "{0DE717C8-1CED-4D13-A5F2-6D4219D9E5F3}"
20+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BloomFilter.Redis.Test", "test\BloomFilter.Redis.Test\BloomFilter.Redis.Test.csproj", "{C02DC47A-7258-4B59-AAB4-DFA208DE9B36}"
2121
EndProject
2222
Global
2323
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -45,10 +45,10 @@ Global
4545
{4A858860-7405-43F4-9132-0DF40BADBDAD}.Debug|Any CPU.Build.0 = Debug|Any CPU
4646
{4A858860-7405-43F4-9132-0DF40BADBDAD}.Release|Any CPU.ActiveCfg = Release|Any CPU
4747
{4A858860-7405-43F4-9132-0DF40BADBDAD}.Release|Any CPU.Build.0 = Release|Any CPU
48-
{0DE717C8-1CED-4D13-A5F2-6D4219D9E5F3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
49-
{0DE717C8-1CED-4D13-A5F2-6D4219D9E5F3}.Debug|Any CPU.Build.0 = Debug|Any CPU
50-
{0DE717C8-1CED-4D13-A5F2-6D4219D9E5F3}.Release|Any CPU.ActiveCfg = Release|Any CPU
51-
{0DE717C8-1CED-4D13-A5F2-6D4219D9E5F3}.Release|Any CPU.Build.0 = Release|Any CPU
48+
{C02DC47A-7258-4B59-AAB4-DFA208DE9B36}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
49+
{C02DC47A-7258-4B59-AAB4-DFA208DE9B36}.Debug|Any CPU.Build.0 = Debug|Any CPU
50+
{C02DC47A-7258-4B59-AAB4-DFA208DE9B36}.Release|Any CPU.ActiveCfg = Release|Any CPU
51+
{C02DC47A-7258-4B59-AAB4-DFA208DE9B36}.Release|Any CPU.Build.0 = Release|Any CPU
5252
EndGlobalSection
5353
GlobalSection(SolutionProperties) = preSolution
5454
HideSolutionNode = FALSE
@@ -59,7 +59,7 @@ Global
5959
{24193FBE-88A5-4C26-9996-341DEBE0CA80} = {BFDF8E72-A7F7-4894-8782-74BB34438F99}
6060
{D46EEAAF-36FD-4297-9381-1845C93D13C4} = {BFDF8E72-A7F7-4894-8782-74BB34438F99}
6161
{4A858860-7405-43F4-9132-0DF40BADBDAD} = {8D22B289-3A76-4399-BDA3-FD1B699B2F13}
62-
{0DE717C8-1CED-4D13-A5F2-6D4219D9E5F3} = {BFDF8E72-A7F7-4894-8782-74BB34438F99}
62+
{C02DC47A-7258-4B59-AAB4-DFA208DE9B36} = {BFDF8E72-A7F7-4894-8782-74BB34438F99}
6363
EndGlobalSection
6464
GlobalSection(ExtensibilityGlobals) = postSolution
6565
SolutionGuid = {12D6ACDC-31C9-4A69-BE24-76E0F73E48A6}

BloomFilter.Redis.Test/BloomFilter.Redis.Test.csproj renamed to test/BloomFilter.Redis.Test/BloomFilter.Redis.Test.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>netcoreapp2.1</TargetFramework>
@@ -13,7 +13,6 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<ProjectReference Include="..\src\BloomFilter.Redis\BloomFilter.Redis.csproj" />
16+
<ProjectReference Include="..\BloomFilterTest\BloomFilterTest.csproj" />
1717
</ItemGroup>
18-
1918
</Project>
File renamed without changes.

test/BloomFilterTest/BloomFilterTest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<ProjectReference Include="..\..\src\BloomFilter\BloomFilter.csproj" />
16+
<ProjectReference Include="..\..\src\BloomFilter.Redis\BloomFilter.Redis.csproj" />
1717
</ItemGroup>
1818

1919
</Project>

0 commit comments

Comments
 (0)