diff --git a/PullRequestSandbox.sln b/PullRequestSandbox.sln
index 126bf52..c871968 100644
--- a/PullRequestSandbox.sln
+++ b/PullRequestSandbox.sln
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PullRequestSandbox", "PullRequestSandbox\PullRequestSandbox.csproj", "{F7845AEB-9337-4DA3-AB34-C47BBDD2E4E0}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PullRequestSandbox", "PullRequestSandbox_Renamed\PullRequestSandbox.csproj", "{F7845AEB-9337-4DA3-AB34-C47BBDD2E4E0}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
diff --git a/PullRequestSandbox/App.config b/PullRequestSandbox_Renamed/App.config
similarity index 100%
rename from PullRequestSandbox/App.config
rename to PullRequestSandbox_Renamed/App.config
diff --git a/PullRequestSandbox/Program.cs b/PullRequestSandbox_Renamed/Program.cs
similarity index 82%
rename from PullRequestSandbox/Program.cs
rename to PullRequestSandbox_Renamed/Program.cs
index 028ff6c..6aec3af 100644
--- a/PullRequestSandbox/Program.cs
+++ b/PullRequestSandbox_Renamed/Program.cs
@@ -8,9 +8,10 @@ namespace PullRequestSandbox
{
class Program
{
+ // Made a change.
+ // Another change
static void Main(string[] args)
{
- /// yepyep
}
}
}
diff --git a/PullRequestSandbox/Properties/AssemblyInfo.cs b/PullRequestSandbox_Renamed/Properties/AssemblyInfo.cs
similarity index 100%
rename from PullRequestSandbox/Properties/AssemblyInfo.cs
rename to PullRequestSandbox_Renamed/Properties/AssemblyInfo.cs
diff --git a/PullRequestSandbox/PullRequestSandbox.csproj b/PullRequestSandbox_Renamed/PullRequestSandbox.csproj
similarity index 98%
rename from PullRequestSandbox/PullRequestSandbox.csproj
rename to PullRequestSandbox_Renamed/PullRequestSandbox.csproj
index bb80d26..2974d28 100644
--- a/PullRequestSandbox/PullRequestSandbox.csproj
+++ b/PullRequestSandbox_Renamed/PullRequestSandbox.csproj
@@ -45,6 +45,7 @@
+
diff --git a/PullRequestSandbox_Renamed/TestClass.cs b/PullRequestSandbox_Renamed/TestClass.cs
new file mode 100644
index 0000000..44ebd5b
--- /dev/null
+++ b/PullRequestSandbox_Renamed/TestClass.cs
@@ -0,0 +1,27 @@
+using System;
+
+namespace InlineComments
+{
+ class TestClass
+ {
+ public int PropertyWithComment1 { get; set; }
+ public int Property1 { get; }
+ public int PropertyWithComment2 { get; set; }
+ public int Property2 { get; }
+
+ public void MethodWithComment2()
+ {
+ // MethodWithComment2 method contents.
+ }
+
+ public void Method1()
+ {
+ // Method1 method contents..
+ }
+
+ public void AnotherMethod()
+ {
+ // Hard breakfast
+ }
+ }
+}
\ No newline at end of file