From ceaa5e4293d325edde0ad3a75d7aa47512e0e9bf Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 9 Feb 2018 09:14:18 -0800 Subject: [PATCH] Add project files. --- 3DSDecrypt.sln | 25 ++++++++++++++ 3DSDecrypt/3DSDecrypt.csproj | 47 +++++++++++++++++++++++++++ 3DSDecrypt/Class1.cs | 12 +++++++ 3DSDecrypt/Properties/AssemblyInfo.cs | 36 ++++++++++++++++++++ 4 files changed, 120 insertions(+) create mode 100644 3DSDecrypt.sln create mode 100644 3DSDecrypt/3DSDecrypt.csproj create mode 100644 3DSDecrypt/Class1.cs create mode 100644 3DSDecrypt/Properties/AssemblyInfo.cs diff --git a/3DSDecrypt.sln b/3DSDecrypt.sln new file mode 100644 index 0000000..ac49582 --- /dev/null +++ b/3DSDecrypt.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}") = "3DSDecrypt", "3DSDecrypt\3DSDecrypt.csproj", "{2E30006A-3C60-4576-A262-937B21C83C06}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2E30006A-3C60-4576-A262-937B21C83C06}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2E30006A-3C60-4576-A262-937B21C83C06}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2E30006A-3C60-4576-A262-937B21C83C06}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2E30006A-3C60-4576-A262-937B21C83C06}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {5AB50D9B-BA18-4F96-804B-52E7E0845B37} + EndGlobalSection +EndGlobal diff --git a/3DSDecrypt/3DSDecrypt.csproj b/3DSDecrypt/3DSDecrypt.csproj new file mode 100644 index 0000000..58d1897 --- /dev/null +++ b/3DSDecrypt/3DSDecrypt.csproj @@ -0,0 +1,47 @@ + + + + + Debug + AnyCPU + {2E30006A-3C60-4576-A262-937B21C83C06} + Library + Properties + _3DSDecrypt + 3DSDecrypt + v4.6.1 + 512 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/3DSDecrypt/Class1.cs b/3DSDecrypt/Class1.cs new file mode 100644 index 0000000..b17b742 --- /dev/null +++ b/3DSDecrypt/Class1.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace _3DSDecrypt +{ + public class Class1 + { + } +} diff --git a/3DSDecrypt/Properties/AssemblyInfo.cs b/3DSDecrypt/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..5e73ad9 --- /dev/null +++ b/3DSDecrypt/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("3DSDecrypt")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("3DSDecrypt")] +[assembly: AssemblyCopyright("Copyright © 2018")] +[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("2e30006a-3c60-4576-a262-937b21c83c06")] + +// 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")]