From 5cb6fe113e86acc832bf80a6cc86ca7a075a590c Mon Sep 17 00:00:00 2001 From: Nabile Rahmani Date: Wed, 23 Aug 2017 08:27:36 +0200 Subject: [PATCH] Initial commit. --- .gitignore | 40 ++++++++++++++++++++++++++++++++++++++++ N64-Emu.sln | 17 +++++++++++++++++ N64-Emu/N64-Emu.csproj | 33 +++++++++++++++++++++++++++++++++ N64-Emu/Program.cs | 9 +++++++++ 4 files changed, 99 insertions(+) create mode 100644 .gitignore create mode 100644 N64-Emu.sln create mode 100644 N64-Emu/N64-Emu.csproj create mode 100644 N64-Emu/Program.cs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4e82d27 --- /dev/null +++ b/.gitignore @@ -0,0 +1,40 @@ +# Autosave files +*~ + +# build +[Oo]bj/ +[Bb]in/ +packages/ +TestResults/ + +# globs +Makefile.in +*.DS_Store +*.sln.cache +*.suo +*.cache +*.pidb +*.userprefs +*.usertasks +config.log +config.make +config.status +aclocal.m4 +install-sh +autom4te.cache/ +*.user +*.tar.gz +tarballs/ +test-results/ +Thumbs.db + +# Mac bundle stuff +*.dmg +*.app + +# resharper +*_Resharper.* +*.Resharper + +# dotCover +*.dotCover diff --git a/N64-Emu.sln b/N64-Emu.sln new file mode 100644 index 0000000..c056f9b --- /dev/null +++ b/N64-Emu.sln @@ -0,0 +1,17 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "N64-Emu", "N64-Emu\N64-Emu.csproj", "{3231B7B4-EFE7-469A-AD04-D75EDECE2AFE}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {3231B7B4-EFE7-469A-AD04-D75EDECE2AFE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3231B7B4-EFE7-469A-AD04-D75EDECE2AFE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3231B7B4-EFE7-469A-AD04-D75EDECE2AFE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3231B7B4-EFE7-469A-AD04-D75EDECE2AFE}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/N64-Emu/N64-Emu.csproj b/N64-Emu/N64-Emu.csproj new file mode 100644 index 0000000..ca07f6a --- /dev/null +++ b/N64-Emu/N64-Emu.csproj @@ -0,0 +1,33 @@ + + + + Debug + AnyCPU + {3231B7B4-EFE7-469A-AD04-D75EDECE2AFE} + Exe + N64Emu + N64-Emu + v4.6 + + + true + full + false + bin\Debug + DEBUG; + 4 + + + true + bin\Release + 4 + + + + + + + + + + \ No newline at end of file diff --git a/N64-Emu/Program.cs b/N64-Emu/Program.cs new file mode 100644 index 0000000..3617de2 --- /dev/null +++ b/N64-Emu/Program.cs @@ -0,0 +1,9 @@ +namespace N64Emu +{ + internal static class Program + { + private static void Main(string[] args) + { + } + } +}