diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2018-02-01 22:19:58 -0500 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2018-02-01 22:19:58 -0500 |
commit | 4466727c6334d6d5ec53be1b6e7857f8291d9137 (patch) | |
tree | ac997ee60c391281afc9b7d01558b18d7ab44379 | |
parent | f1584e69c307427516d2c180ab92e28bc3786326 (diff) |
Add Visual Studio Support.
-rw-r--r-- | .gitignore | 1 | ||||
-rwxr-xr-x | pokeruby.sln | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 4e73c4f17..37dbe1f84 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,4 @@ build/ .idea/ *.DS_Store *.pl +.ARM/ diff --git a/pokeruby.sln b/pokeruby.sln new file mode 100755 index 000000000..804cd1dde --- /dev/null +++ b/pokeruby.sln @@ -0,0 +1,25 @@ +
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 15
+VisualStudioVersion = 15.0.27130.2027
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pokeruby", "pokeruby.vcxproj", "{F0F7B293-A134-41D6-AD91-2B2623CD7932}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|ARM = Debug|ARM
+ Release|ARM = Release|ARM
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {F0F7B293-A134-41D6-AD91-2B2623CD7932}.Debug|ARM.ActiveCfg = Release|ARM
+ {F0F7B293-A134-41D6-AD91-2B2623CD7932}.Debug|ARM.Build.0 = Release|ARM
+ {F0F7B293-A134-41D6-AD91-2B2623CD7932}.Release|ARM.ActiveCfg = Release|ARM
+ {F0F7B293-A134-41D6-AD91-2B2623CD7932}.Release|ARM.Build.0 = Release|ARM
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {2FD311A4-1987-41D5-831A-0A93573CC337}
+ EndGlobalSection
+EndGlobal
|