diff --git a/source/HelloWorldAssembler/HelloWorldAssembler.csproj b/source/HelloWorldAssembler/HelloWorldAssembler.csproj new file mode 100644 index 000000000..4a3de5726 --- /dev/null +++ b/source/HelloWorldAssembler/HelloWorldAssembler.csproj @@ -0,0 +1,63 @@ + + + + Debug + AnyCPU + 9.0.20706 + 2.0 + {E17BC1C6-3E4F-443F-804E-CB43A5610DDB} + Exe + Properties + HelloWorldAssembler + HelloWorldAssembler + v3.5 + 512 + SAK + SAK + SAK + SAK + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + 3.5 + + + 3.5 + + + 3.5 + + + + + + + + + + + \ No newline at end of file diff --git a/source/HelloWorldAssembler/HelloWorldAssembler.csproj.vspscc b/source/HelloWorldAssembler/HelloWorldAssembler.csproj.vspscc new file mode 100644 index 000000000..feffdecaa --- /dev/null +++ b/source/HelloWorldAssembler/HelloWorldAssembler.csproj.vspscc @@ -0,0 +1,10 @@ +"" +{ +"FILE_VERSION" = "9237" +"ENLISTMENT_CHOICE" = "NEVER" +"PROJECT_FILE_RELATIVE_PATH" = "" +"NUMBER_OF_EXCLUDED_FILES" = "0" +"ORIGINAL_PROJECT_FILE_PATH" = "" +"NUMBER_OF_NESTED_PROJECTS" = "0" +"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER" +} diff --git a/source/HelloWorldAssembler/Program.cs b/source/HelloWorldAssembler/Program.cs new file mode 100644 index 000000000..b0427e7f2 --- /dev/null +++ b/source/HelloWorldAssembler/Program.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace HelloWorldAssembler { + class Program { + static void Main(string[] args) { + } + } +} diff --git a/source/HelloWorldAssembler/Properties/AssemblyInfo.cs b/source/HelloWorldAssembler/Properties/AssemblyInfo.cs new file mode 100644 index 000000000..9ae01f02e --- /dev/null +++ b/source/HelloWorldAssembler/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("HelloWorldAssembler")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("HelloWorldAssembler")] +[assembly: AssemblyCopyright("Copyright © 2007")] +[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("58eabfa9-f3b1-4cd2-a847-11bd711461b2")] + +// 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/source/IL2CPU.sln b/source/IL2CPU.sln index 1b4aadf5b..d9de7afcf 100644 --- a/source/IL2CPU.sln +++ b/source/IL2CPU.sln @@ -17,9 +17,11 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Indy.IL2CPU.Assembler.X86", EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Indy.IL2CPU.IL.X86", "Indy.IL2CPU.IL.X86\Indy.IL2CPU.IL.X86.csproj", "{69C8D2C5-225C-4A00-BA55-AEF6719CBDBA}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloWorldAssembler", "HelloWorldAssembler\HelloWorldAssembler.csproj", "{E17BC1C6-3E4F-443F-804E-CB43A5610DDB}" +EndProject Global GlobalSection(TeamFoundationVersionControl) = preSolution - SccNumberOfProjects = 9 + SccNumberOfProjects = 10 SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C} SccTeamFoundationServer = https://tfs04.codeplex.com/ SccLocalPath0 = . @@ -47,6 +49,9 @@ Global SccProjectUniqueName8 = Indy.IL2CPU.IL.X86\\Indy.IL2CPU.IL.X86.csproj SccProjectName8 = Indy.IL2CPU.IL.X86 SccLocalPath8 = Indy.IL2CPU.IL.X86 + SccProjectUniqueName9 = HelloWorldAssembler\\HelloWorldAssembler.csproj + SccProjectName9 = HelloWorldAssembler + SccLocalPath9 = HelloWorldAssembler EndGlobalSection GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -85,6 +90,10 @@ Global {69C8D2C5-225C-4A00-BA55-AEF6719CBDBA}.Debug|Any CPU.Build.0 = Debug|Any CPU {69C8D2C5-225C-4A00-BA55-AEF6719CBDBA}.Release|Any CPU.ActiveCfg = Release|Any CPU {69C8D2C5-225C-4A00-BA55-AEF6719CBDBA}.Release|Any CPU.Build.0 = Release|Any CPU + {E17BC1C6-3E4F-443F-804E-CB43A5610DDB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E17BC1C6-3E4F-443F-804E-CB43A5610DDB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E17BC1C6-3E4F-443F-804E-CB43A5610DDB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E17BC1C6-3E4F-443F-804E-CB43A5610DDB}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE