diff --git a/src/apphost-extract/apphost-extract.sln b/src/apphost-extract/apphost-extract.sln new file mode 100644 index 0000000..76f7aab --- /dev/null +++ b/src/apphost-extract/apphost-extract.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30204.135 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "apphost-extract", "apphost-extract\apphost-extract.csproj", "{150E6D0D-598E-40E7-B7DD-3941F31E5C63}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {150E6D0D-598E-40E7-B7DD-3941F31E5C63}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {150E6D0D-598E-40E7-B7DD-3941F31E5C63}.Debug|Any CPU.Build.0 = Debug|Any CPU + {150E6D0D-598E-40E7-B7DD-3941F31E5C63}.Release|Any CPU.ActiveCfg = Release|Any CPU + {150E6D0D-598E-40E7-B7DD-3941F31E5C63}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {CC5C58E3-AE24-4F37-AA53-A0945CC814EB} + EndGlobalSection +EndGlobal diff --git a/src/apphost-extract/apphost-extract/App.config b/src/apphost-extract/apphost-extract/App.config new file mode 100644 index 0000000..193aecc --- /dev/null +++ b/src/apphost-extract/apphost-extract/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/apphost-extract/apphost-extract/Program.cs b/src/apphost-extract/apphost-extract/Program.cs new file mode 100644 index 0000000..34a69a5 --- /dev/null +++ b/src/apphost-extract/apphost-extract/Program.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace apphost_extract +{ + class Program + { + static void Main(string[] args) + { + } + } +} diff --git a/src/apphost-extract/apphost-extract/Properties/AssemblyInfo.cs b/src/apphost-extract/apphost-extract/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..4270a79 --- /dev/null +++ b/src/apphost-extract/apphost-extract/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("apphost-extract")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("apphost-extract")] +[assembly: AssemblyCopyright("Copyright © 2021")] +[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("150e6d0d-598e-40e7-b7dd-3941f31e5c63")] + +// 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/src/apphost-extract/apphost-extract/apphost-extract.csproj b/src/apphost-extract/apphost-extract/apphost-extract.csproj new file mode 100644 index 0000000..86d3a6d --- /dev/null +++ b/src/apphost-extract/apphost-extract/apphost-extract.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + {150E6D0D-598E-40E7-B7DD-3941F31E5C63} + Exe + apphost_extract + apphost-extract + v4.8 + 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