Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions PullRequestSandbox/Program.cs
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
using System;
// first line here




using System; // comment on first line
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace PullRequestSandbox
{
class Program
class Program // x
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Starting a new review.

{
static void Main(string[] args)
{
/// yepyep
File.WriteAllText(@"..\..\extra_carriage_return.txt", "foo\r\r\nbar\n\nfo\ro\r\nbar\n");
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

writealltext!

}
}
}

// another line to comment on
3 changes: 3 additions & 0 deletions PullRequestSandbox/PullRequestSandbox.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="extra_carriage_return.txt" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
5 changes: 5 additions & 0 deletions PullRequestSandbox/extra_carriage_return.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
foo
bar

foo
bar
Expand Down