From 4bc687ddbc5f262bcee09bc606fff8f98a10ac0f Mon Sep 17 00:00:00 2001 From: Jakob Stendahl Date: Sat, 11 Nov 2017 01:21:29 +0100 Subject: Add project files. --- Space Invaders.sln | 25 +++++++++++++++ Space Invaders/App.config | 6 ++++ Space Invaders/Program.cs | 12 +++++++ Space Invaders/Properties/AssemblyInfo.cs | 36 +++++++++++++++++++++ Space Invaders/Space Invaders.csproj | 52 +++++++++++++++++++++++++++++++ 5 files changed, 131 insertions(+) create mode 100644 Space Invaders.sln create mode 100644 Space Invaders/App.config create mode 100644 Space Invaders/Program.cs create mode 100644 Space Invaders/Properties/AssemblyInfo.cs create mode 100644 Space Invaders/Space Invaders.csproj diff --git a/Space Invaders.sln b/Space Invaders.sln new file mode 100644 index 0000000..bfb5f37 --- /dev/null +++ b/Space Invaders.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27004.2006 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Space Invaders", "Space Invaders\Space Invaders.csproj", "{18538779-CF6C-4BC3-8317-6BCD74BF5058}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {18538779-CF6C-4BC3-8317-6BCD74BF5058}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {18538779-CF6C-4BC3-8317-6BCD74BF5058}.Debug|Any CPU.Build.0 = Debug|Any CPU + {18538779-CF6C-4BC3-8317-6BCD74BF5058}.Release|Any CPU.ActiveCfg = Release|Any CPU + {18538779-CF6C-4BC3-8317-6BCD74BF5058}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {35F6637F-EF9E-4FCA-93FA-74AE27D81715} + EndGlobalSection +EndGlobal diff --git a/Space Invaders/App.config b/Space Invaders/App.config new file mode 100644 index 0000000..731f6de --- /dev/null +++ b/Space Invaders/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Space Invaders/Program.cs b/Space Invaders/Program.cs new file mode 100644 index 0000000..49244b1 --- /dev/null +++ b/Space Invaders/Program.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Space_Invaders { + class Program { + static void Main(string[] args) { + } + } +} diff --git a/Space Invaders/Properties/AssemblyInfo.cs b/Space Invaders/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..84b7252 --- /dev/null +++ b/Space Invaders/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Space Invaders")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Space Invaders")] +[assembly: AssemblyCopyright("Copyright © 2017")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("18538779-cf6c-4bc3-8317-6bcd74bf5058")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Space Invaders/Space Invaders.csproj b/Space Invaders/Space Invaders.csproj new file mode 100644 index 0000000..8762d4b --- /dev/null +++ b/Space Invaders/Space Invaders.csproj @@ -0,0 +1,52 @@ + + + + + Debug + AnyCPU + {18538779-CF6C-4BC3-8317-6BCD74BF5058} + Exe + Space_Invaders + Space Invaders + v4.6.1 + 512 + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3