diff --git a/ConsoleAppReact/ConsoleAppReact.sln b/ConsoleAppReact/ConsoleAppReact.sln new file mode 100644 index 0000000..bd30c1e --- /dev/null +++ b/ConsoleAppReact/ConsoleAppReact.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.28803.352 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleAppReact", "ConsoleAppReact\ConsoleAppReact.csproj", "{96B15E72-B97A-4F8B-BB26-95BA38F6A861}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {96B15E72-B97A-4F8B-BB26-95BA38F6A861}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {96B15E72-B97A-4F8B-BB26-95BA38F6A861}.Debug|Any CPU.Build.0 = Debug|Any CPU + {96B15E72-B97A-4F8B-BB26-95BA38F6A861}.Release|Any CPU.ActiveCfg = Release|Any CPU + {96B15E72-B97A-4F8B-BB26-95BA38F6A861}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {9476D281-FB33-4593-86B2-BB413675ADFF} + EndGlobalSection +EndGlobal diff --git a/ConsoleAppReact/ConsoleAppReact/App.config b/ConsoleAppReact/ConsoleAppReact/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/ConsoleAppReact/ConsoleAppReact/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/ConsoleAppReact/ConsoleAppReact/ConsoleAppReact.csproj b/ConsoleAppReact/ConsoleAppReact/ConsoleAppReact.csproj new file mode 100644 index 0000000..1839e62 --- /dev/null +++ b/ConsoleAppReact/ConsoleAppReact/ConsoleAppReact.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + {96B15E72-B97A-4F8B-BB26-95BA38F6A861} + Exe + ConsoleAppReact + ConsoleAppReact + v4.7.2 + 512 + true + 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 diff --git a/ConsoleAppReact/ConsoleAppReact/Program.cs b/ConsoleAppReact/ConsoleAppReact/Program.cs new file mode 100644 index 0000000..78e43b8 --- /dev/null +++ b/ConsoleAppReact/ConsoleAppReact/Program.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConsoleAppReact +{ + class Program + { + static void Main(string[] args) + { + } + } +} diff --git a/ConsoleAppReact/ConsoleAppReact/Properties/AssemblyInfo.cs b/ConsoleAppReact/ConsoleAppReact/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..cd1a299 --- /dev/null +++ b/ConsoleAppReact/ConsoleAppReact/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("ConsoleAppReact")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("ConsoleAppReact")] +[assembly: AssemblyCopyright("Copyright © Microsoft 2019")] +[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("96b15e72-b97a-4f8b-bb26-95ba38f6a861")] + +// 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")]