Skip to content

Commit 147cca4

Browse files
committed
Add project files.
1 parent 7b476af commit 147cca4

7 files changed

+147
-0
lines changed

GitChangesPageExamples.sln

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30406.18
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GitChangesPageExamples", "GitChangesPageExamples\GitChangesPageExamples.csproj", "{F11EBCAE-D1AB-4005-846A-6F84984515BD}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{F11EBCAE-D1AB-4005-846A-6F84984515BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{F11EBCAE-D1AB-4005-846A-6F84984515BD}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{F11EBCAE-D1AB-4005-846A-6F84984515BD}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{F11EBCAE-D1AB-4005-846A-6F84984515BD}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {C960E3B8-7EDE-413A-89CF-402819A17D6C}
24+
EndGlobalSection
25+
EndGlobal

GitChangesPageExamples/FileA.cs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
using System;
2+
3+
namespace GitChangesPageExamples
4+
{
5+
class FileA
6+
{
7+
// Edits make to this file will be made in:
8+
// ChangesGoHere()
9+
// Seen Below...
10+
11+
static void ChangesGoHere()
12+
{
13+
Console.WriteLine("AAAAA");
14+
Console.WriteLine("BBBBB");
15+
Console.WriteLine("CCCCC");
16+
Console.WriteLine("DDDDD");
17+
Console.WriteLine("EEEEE");
18+
Console.WriteLine("FFFFF");
19+
Console.WriteLine("GGGGG");
20+
}
21+
}
22+
}

GitChangesPageExamples/FileB.cs

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace GitChangesPageExamples
8+
{
9+
class FileB
10+
{
11+
// Edits make to this file will be made in:
12+
// ChangesGoHere()
13+
// Seen Below...
14+
15+
static void ChangesGoHere()
16+
{
17+
Console.WriteLine("AAAAA");
18+
Console.WriteLine("BBBBB");
19+
Console.WriteLine("CCCCC");
20+
Console.WriteLine("DDDDD");
21+
Console.WriteLine("EEEEE");
22+
Console.WriteLine("FFFFF");
23+
Console.WriteLine("GGGGG");
24+
}
25+
}
26+
}

GitChangesPageExamples/FileC.cs

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace GitChangesPageExamples
8+
{
9+
class FileC
10+
{
11+
// Edits make to this file will be made in:
12+
// ChangesGoHere()
13+
// Seen Below...
14+
static void ChangesGoHere()
15+
{
16+
Console.WriteLine("AAAAA");
17+
Console.WriteLine("BBBBB");
18+
Console.WriteLine("CCCCC");
19+
Console.WriteLine("DDDDD");
20+
Console.WriteLine("EEEEE");
21+
Console.WriteLine("FFFFF");
22+
Console.WriteLine("GGGGG");
23+
}
24+
}
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net5.0</TargetFramework>
6+
</PropertyGroup>
7+
8+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// This file is used by Code Analysis to maintain SuppressMessage
2+
// attributes that are applied to this project.
3+
// Project-level suppressions either have no target or are given
4+
// a specific target and scoped to a namespace, type, member, etc.
5+
6+
using System.Diagnostics.CodeAnalysis;
7+
8+
[assembly: SuppressMessage("CodeQuality", "IDE0051:Remove unused private members", Justification = "<Pending>", Scope = "member", Target = "~M:GitChangesPageExamples.FileA.ChangesGoHere")]
9+
[assembly: SuppressMessage("CodeQuality", "IDE0051:Remove unused private members", Justification = "<Pending>", Scope = "member", Target = "~M:GitChangesPageExamples.FileB.ChangesGoHere")]
10+
[assembly: SuppressMessage("CodeQuality", "IDE0051:Remove unused private members", Justification = "<Pending>", Scope = "member", Target = "~M:GitChangesPageExamples.FileC.ChangesGoHere")]
11+
[assembly: SuppressMessage("CodeQuality", "IDE0051:Remove unused private members", Justification = "<Pending>", Scope = "member", Target = "~M:GitChangesPageExamples.Program.ChangesGoHere")]

GitChangesPageExamples/Program.cs

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
using System;
2+
3+
namespace GitChangesPageExamples
4+
{
5+
class Program
6+
{
7+
static void Main(string[] args)
8+
{
9+
Console.WriteLine("Hello World!");
10+
Console.WriteLine("The Purpose of this repository is to walk through the basic functionality of Git.");
11+
Console.WriteLine("This repository should be forked so that you are able to experiment with pushing changes" +
12+
"from your local repository (your computer) to a your remote repository (github.com)");
13+
14+
// Edits make to this file will be made in:
15+
// ChangesGoHere()
16+
// Seen Below...
17+
}
18+
19+
static void ChangesGoHere()
20+
{
21+
Console.WriteLine("AAAAA");
22+
Console.WriteLine("BBBBB");
23+
Console.WriteLine("CCCCC");
24+
Console.WriteLine("DDDDD");
25+
Console.WriteLine("EEEEE");
26+
Console.WriteLine("FFFFF");
27+
Console.WriteLine("GGGGG");
28+
}
29+
}
30+
}

0 commit comments

Comments
 (0)