diff --git a/source/Cosmos.Build.Windows.Config/App.xaml b/source/Cosmos.Build.Windows.Config/App.xaml new file mode 100644 index 000000000..c1ba0ed31 --- /dev/null +++ b/source/Cosmos.Build.Windows.Config/App.xaml @@ -0,0 +1,8 @@ + + + + + diff --git a/source/Cosmos.Build.Windows.Config/App.xaml.cs b/source/Cosmos.Build.Windows.Config/App.xaml.cs new file mode 100644 index 000000000..0dd8e3c6c --- /dev/null +++ b/source/Cosmos.Build.Windows.Config/App.xaml.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Windows; + +namespace Cosmos.Build.Windows.Config { + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application { + } +} diff --git a/source/Cosmos.Build.Windows.Config/Cosmos.Build.Windows.Config.csproj b/source/Cosmos.Build.Windows.Config/Cosmos.Build.Windows.Config.csproj new file mode 100644 index 000000000..8778403c1 --- /dev/null +++ b/source/Cosmos.Build.Windows.Config/Cosmos.Build.Windows.Config.csproj @@ -0,0 +1,106 @@ + + + + Debug + AnyCPU + 9.0.21022 + 2.0 + {228941A5-080D-4057-9491-160950105A8E} + WinExe + Properties + Cosmos.Build.Windows.Config + Cosmos.Build.Windows.Config + v3.5 + 512 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 4 + 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 + + + + + + + + + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + + + App.xaml + Code + + + MainWindow.xaml + Code + + + + + Code + + + True + True + Resources.resx + + + True + Settings.settings + True + + + ResXFileCodeGenerator + Resources.Designer.cs + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + + + + \ No newline at end of file diff --git a/source/Cosmos.Build.Windows.Config/Cosmos.Build.Windows.Config.csproj.vspscc b/source/Cosmos.Build.Windows.Config/Cosmos.Build.Windows.Config.csproj.vspscc new file mode 100644 index 000000000..feffdecaa --- /dev/null +++ b/source/Cosmos.Build.Windows.Config/Cosmos.Build.Windows.Config.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/Cosmos.Build.Windows.Config/MainWindow.xaml b/source/Cosmos.Build.Windows.Config/MainWindow.xaml new file mode 100644 index 000000000..ad131463d --- /dev/null +++ b/source/Cosmos.Build.Windows.Config/MainWindow.xaml @@ -0,0 +1,8 @@ + + + + + diff --git a/source/Cosmos.Build.Windows.Config/MainWindow.xaml.cs b/source/Cosmos.Build.Windows.Config/MainWindow.xaml.cs new file mode 100644 index 000000000..698b2679a --- /dev/null +++ b/source/Cosmos.Build.Windows.Config/MainWindow.xaml.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace Cosmos.Build.Windows.Config { + /// + /// Interaction logic for Window1.xaml + /// + public partial class Window1 : Window { + public Window1() { + InitializeComponent(); + } + } +} diff --git a/source/Cosmos.Build.Windows.Config/Properties/AssemblyInfo.cs b/source/Cosmos.Build.Windows.Config/Properties/AssemblyInfo.cs new file mode 100644 index 000000000..57357502d --- /dev/null +++ b/source/Cosmos.Build.Windows.Config/Properties/AssemblyInfo.cs @@ -0,0 +1,55 @@ +using System.Reflection; +using System.Resources; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Windows; + +// 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("Cosmos.Build.Windows.Config")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Cosmos.Build.Windows.Config")] +[assembly: AssemblyCopyright("Copyright © 2008")] +[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)] + +//In order to begin building localizable applications, set +//CultureYouAreCodingWith in your .csproj file +//inside a . For example, if you are using US english +//in your source files, set the to en-US. Then uncomment +//the NeutralResourceLanguage attribute below. Update the "en-US" in +//the line below to match the UICulture setting in the project file. + +//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] + + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] + + +// 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/Cosmos.Build.Windows.Config/Properties/Resources.Designer.cs b/source/Cosmos.Build.Windows.Config/Properties/Resources.Designer.cs new file mode 100644 index 000000000..40caefdaf --- /dev/null +++ b/source/Cosmos.Build.Windows.Config/Properties/Resources.Designer.cs @@ -0,0 +1,62 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.1433 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Cosmos.Build.Windows.Config.Properties { + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if ((resourceMan == null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Cosmos.Build.Windows.Config.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + } +} diff --git a/source/Cosmos.Build.Windows.Config/Properties/Resources.resx b/source/Cosmos.Build.Windows.Config/Properties/Resources.resx new file mode 100644 index 000000000..ffecec851 --- /dev/null +++ b/source/Cosmos.Build.Windows.Config/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/source/Cosmos.Build.Windows.Config/Properties/Settings.Designer.cs b/source/Cosmos.Build.Windows.Config/Properties/Settings.Designer.cs new file mode 100644 index 000000000..ed61d1fbd --- /dev/null +++ b/source/Cosmos.Build.Windows.Config/Properties/Settings.Designer.cs @@ -0,0 +1,26 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.1433 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Cosmos.Build.Windows.Config.Properties { + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "9.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default { + get { + return defaultInstance; + } + } + } +} diff --git a/source/Cosmos.Build.Windows.Config/Properties/Settings.settings b/source/Cosmos.Build.Windows.Config/Properties/Settings.settings new file mode 100644 index 000000000..8f2fd95d6 --- /dev/null +++ b/source/Cosmos.Build.Windows.Config/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/source/Cosmos.sln b/source/Cosmos.sln index 7e5b80019..2c8b91afd 100644 --- a/source/Cosmos.sln +++ b/source/Cosmos.sln @@ -55,15 +55,19 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "IL2CPU", "IL2CPU", "{407049 EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{E16DB75B-0F1D-4813-9103-F8FB6E7BAE2A}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Boots", "Boots", "{21E68B7D-F1DC-46E2-9CFA-0A7C6D77D42E}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Boot Images", "Boot Images", "{21E68B7D-F1DC-46E2-9CFA-0A7C6D77D42E}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Old", "Old", "{86BD557B-49D1-4833-B1F7-D38BF21A87EA}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cosmos.Build.Windows", "Cosmos.Build.Windows\Cosmos.Build.Windows.csproj", "{1F0EDE86-F6D4-4355-9A97-10E90457770C}" EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{2DE75CE4-7A3B-4659-84FC-16F5EC0AEDE4}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cosmos.Build.Windows.Config", "Cosmos.Build.Windows.Config\Cosmos.Build.Windows.Config.csproj", "{228941A5-080D-4057-9491-160950105A8E}" +EndProject Global GlobalSection(TeamFoundationVersionControl) = preSolution - SccNumberOfProjects = 25 + SccNumberOfProjects = 26 SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C} SccTeamFoundationServer = https://tfs04.codeplex.com/ SccLocalPath0 = . @@ -163,6 +167,10 @@ Global SccProjectTopLevelParentUniqueName24 = Cosmos.sln SccProjectName24 = Cosmos.Build.Windows SccLocalPath24 = Cosmos.Build.Windows + SccProjectUniqueName25 = Cosmos.Build.Windows.Config\\Cosmos.Build.Windows.Config.csproj + SccProjectTopLevelParentUniqueName25 = Cosmos.sln + SccProjectName25 = Cosmos.Build.Windows.Config + SccLocalPath25 = Cosmos.Build.Windows.Config EndGlobalSection GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -267,6 +275,10 @@ Global {1F0EDE86-F6D4-4355-9A97-10E90457770C}.Debug|Any CPU.Build.0 = Debug|Any CPU {1F0EDE86-F6D4-4355-9A97-10E90457770C}.Release|Any CPU.ActiveCfg = Release|Any CPU {1F0EDE86-F6D4-4355-9A97-10E90457770C}.Release|Any CPU.Build.0 = Release|Any CPU + {228941A5-080D-4057-9491-160950105A8E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {228941A5-080D-4057-9491-160950105A8E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {228941A5-080D-4057-9491-160950105A8E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {228941A5-080D-4057-9491-160950105A8E}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -295,7 +307,9 @@ Global {28584689-B678-4863-B404-0AD46B2F2B63} = {0D558E33-78B0-47DB-B5EF-B7C2F3114D75} {A1F83D9F-2D44-4264-A08B-416797123018} = {0D558E33-78B0-47DB-B5EF-B7C2F3114D75} {7BAB58BF-E8A1-4623-B6BF-4B90A0505226} = {0D558E33-78B0-47DB-B5EF-B7C2F3114D75} - {1F0EDE86-F6D4-4355-9A97-10E90457770C} = {0D558E33-78B0-47DB-B5EF-B7C2F3114D75} + {2DE75CE4-7A3B-4659-84FC-16F5EC0AEDE4} = {0D558E33-78B0-47DB-B5EF-B7C2F3114D75} {B0BBD2A2-4FAA-4730-9770-ACE6D9532132} = {E16DB75B-0F1D-4813-9103-F8FB6E7BAE2A} + {1F0EDE86-F6D4-4355-9A97-10E90457770C} = {2DE75CE4-7A3B-4659-84FC-16F5EC0AEDE4} + {228941A5-080D-4057-9491-160950105A8E} = {2DE75CE4-7A3B-4659-84FC-16F5EC0AEDE4} EndGlobalSection EndGlobal diff --git a/source/Cosmos/Cosmos.Kernel.Plugs/Cosmos.Kernel.Plugs.csproj b/source/Cosmos/Cosmos.Kernel.Plugs/Cosmos.Kernel.Plugs.csproj index e193d2f2d..5aa3d6020 100644 --- a/source/Cosmos/Cosmos.Kernel.Plugs/Cosmos.Kernel.Plugs.csproj +++ b/source/Cosmos/Cosmos.Kernel.Plugs/Cosmos.Kernel.Plugs.csproj @@ -38,10 +38,6 @@ 4 - - False - ..\..\..\Tools\I4O\i4o.dll - False ..\..\Mono.Cecil.dll diff --git a/source/Indy.IL2CPU.IL/Indy.IL2CPU.IL.csproj b/source/Indy.IL2CPU.IL/Indy.IL2CPU.IL.csproj index 2382aac8b..ee34555e7 100644 --- a/source/Indy.IL2CPU.IL/Indy.IL2CPU.IL.csproj +++ b/source/Indy.IL2CPU.IL/Indy.IL2CPU.IL.csproj @@ -37,10 +37,6 @@ 4 - - False - ..\..\Tools\I4O\i4o.dll - False ..\Mono.Cecil.dll