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/App.config | 6 ++++ Space Invaders/Program.cs | 12 +++++++ Space Invaders/Properties/AssemblyInfo.cs | 36 +++++++++++++++++++++ Space Invaders/Space Invaders.csproj | 52 +++++++++++++++++++++++++++++++ 4 files changed, 106 insertions(+) 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 (limited to 'Space Invaders') 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