Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 82e7775

Browse files
Stefano ColucciTeto-at-GitHub
authored andcommitted
CHORE : bundle first 3 projects into a solution
1 parent f793575 commit 82e7775

File tree

10 files changed

+65
-14
lines changed

10 files changed

+65
-14
lines changed

csharp/1-ArraysAndHashing/build.proj

Lines changed: 0 additions & 5 deletions
This file was deleted.

csharp/1-ArraysAndHashing/testCases/testCases.csproj renamed to csharp/1-ArraysAndHashing/testCases/1_ArrayAndHashingTest.csproj

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

1212
<ItemGroup>
1313
<PackageReference Include="FluentAssertions" Version="6.6.0" />
14-
<ProjectReference Include="../main/main.csproj" />
14+
<ProjectReference Include="..\main\1_ArrayAndHashing.csproj" />
1515
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
1616
<PackageReference Include="NUnit" Version="3.13.2" />
1717
<PackageReference Include="NUnit3TestAdapter" Version="4.0.0" />

csharp/2-TwoPointers/build.proj

Lines changed: 0 additions & 5 deletions
This file was deleted.

csharp/3-SlidingWindow/testCases/testCases.csproj renamed to csharp/2-TwoPointers/testCases/2_TwoPointersTest.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,14 @@
99

1010
<ItemGroup>
1111
<PackageReference Include="FluentAssertions" Version="6.6.0" />
12-
<ProjectReference Include="../main/main.csproj" />
1312
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
1413
<PackageReference Include="NUnit" Version="3.13.2" />
1514
<PackageReference Include="NUnit3TestAdapter" Version="4.0.0" />
1615
<PackageReference Include="coverlet.collector" Version="3.1.0" />
1716
</ItemGroup>
1817

18+
<ItemGroup>
19+
<ProjectReference Include="..\main\2_TwoPointers.csproj" />
20+
</ItemGroup>
21+
1922
</Project>

csharp/2-TwoPointers/testCases/N1-L125-ValidPalindrome_Test.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using TwoPointers.Main.ValidPalindrome;
21
using FluentAssertions;
32
using NUnit.Framework;
3+
using TwoPointers.Main.ValidPalindrome;
44

55
namespace testCases
66
{

csharp/2-TwoPointers/testCases/testCases.csproj renamed to csharp/3-SlidingWindow/testCases/3_SlidingWindowTest.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,14 @@
99

1010
<ItemGroup>
1111
<PackageReference Include="FluentAssertions" Version="6.6.0" />
12-
<ProjectReference Include="../main/main.csproj" />
1312
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
1413
<PackageReference Include="NUnit" Version="3.13.2" />
1514
<PackageReference Include="NUnit3TestAdapter" Version="4.0.0" />
1615
<PackageReference Include="coverlet.collector" Version="3.1.0" />
1716
</ItemGroup>
1817

18+
<ItemGroup>
19+
<ProjectReference Include="..\main\3_SlidingWindow.csproj" />
20+
</ItemGroup>
21+
1922
</Project>

csharp/main.sln

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.1.32228.430
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "1_ArrayAndHashing", "1-ArraysAndHashing\main\1_ArrayAndHashing.csproj", "{9DABB8E5-8DA4-41D3-A7FF-53ED73883764}"
7+
EndProject
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "1_ArrayAndHashingTest", "1-ArraysAndHashing\testCases\1_ArrayAndHashingTest.csproj", "{C6B86A92-B7C2-4A2D-84F7-3A00065BFAB0}"
9+
EndProject
10+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "2_TwoPointers", "2-TwoPointers\main\2_TwoPointers.csproj", "{796958DE-A0FE-4B58-9C74-15F616290A61}"
11+
EndProject
12+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "2_TwoPointersTest", "2-TwoPointers\testCases\2_TwoPointersTest.csproj", "{54F9EE8E-F622-44F8-9808-293AD5D989F7}"
13+
EndProject
14+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "3_SlidingWindow", "3-SlidingWindow\main\3_SlidingWindow.csproj", "{52A4C138-47CC-4389-BBF7-99666EF40871}"
15+
EndProject
16+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "3_SlidingWindowTest", "3-SlidingWindow\testCases\3_SlidingWindowTest.csproj", "{128A29BC-E47D-4472-8D42-82F10DF2F913}"
17+
EndProject
18+
Global
19+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
20+
Debug|Any CPU = Debug|Any CPU
21+
Release|Any CPU = Release|Any CPU
22+
EndGlobalSection
23+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
24+
{9DABB8E5-8DA4-41D3-A7FF-53ED73883764}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
25+
{9DABB8E5-8DA4-41D3-A7FF-53ED73883764}.Debug|Any CPU.Build.0 = Debug|Any CPU
26+
{9DABB8E5-8DA4-41D3-A7FF-53ED73883764}.Release|Any CPU.ActiveCfg = Release|Any CPU
27+
{9DABB8E5-8DA4-41D3-A7FF-53ED73883764}.Release|Any CPU.Build.0 = Release|Any CPU
28+
{C6B86A92-B7C2-4A2D-84F7-3A00065BFAB0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
29+
{C6B86A92-B7C2-4A2D-84F7-3A00065BFAB0}.Debug|Any CPU.Build.0 = Debug|Any CPU
30+
{C6B86A92-B7C2-4A2D-84F7-3A00065BFAB0}.Release|Any CPU.ActiveCfg = Release|Any CPU
31+
{C6B86A92-B7C2-4A2D-84F7-3A00065BFAB0}.Release|Any CPU.Build.0 = Release|Any CPU
32+
{796958DE-A0FE-4B58-9C74-15F616290A61}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
33+
{796958DE-A0FE-4B58-9C74-15F616290A61}.Debug|Any CPU.Build.0 = Debug|Any CPU
34+
{796958DE-A0FE-4B58-9C74-15F616290A61}.Release|Any CPU.ActiveCfg = Release|Any CPU
35+
{796958DE-A0FE-4B58-9C74-15F616290A61}.Release|Any CPU.Build.0 = Release|Any CPU
36+
{54F9EE8E-F622-44F8-9808-293AD5D989F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
37+
{54F9EE8E-F622-44F8-9808-293AD5D989F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
38+
{54F9EE8E-F622-44F8-9808-293AD5D989F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
39+
{54F9EE8E-F622-44F8-9808-293AD5D989F7}.Release|Any CPU.Build.0 = Release|Any CPU
40+
{52A4C138-47CC-4389-BBF7-99666EF40871}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
41+
{52A4C138-47CC-4389-BBF7-99666EF40871}.Debug|Any CPU.Build.0 = Debug|Any CPU
42+
{52A4C138-47CC-4389-BBF7-99666EF40871}.Release|Any CPU.ActiveCfg = Release|Any CPU
43+
{52A4C138-47CC-4389-BBF7-99666EF40871}.Release|Any CPU.Build.0 = Release|Any CPU
44+
{128A29BC-E47D-4472-8D42-82F10DF2F913}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
45+
{128A29BC-E47D-4472-8D42-82F10DF2F913}.Debug|Any CPU.Build.0 = Debug|Any CPU
46+
{128A29BC-E47D-4472-8D42-82F10DF2F913}.Release|Any CPU.ActiveCfg = Release|Any CPU
47+
{128A29BC-E47D-4472-8D42-82F10DF2F913}.Release|Any CPU.Build.0 = Release|Any CPU
48+
EndGlobalSection
49+
GlobalSection(SolutionProperties) = preSolution
50+
HideSolutionNode = FALSE
51+
EndGlobalSection
52+
GlobalSection(ExtensibilityGlobals) = postSolution
53+
SolutionGuid = {A141F795-740A-43DD-9D6C-4619181B495F}
54+
EndGlobalSection
55+
EndGlobal

0 commit comments

Comments
 (0)