2006-10-14 Marek Sieradzki <marek.sieradzki@gmail.com>
authorMarek Sieradzki <msierad@mono-cvs.ximian.com>
Sat, 14 Oct 2006 08:22:14 +0000 (08:22 -0000)
committerMarek Sieradzki <msierad@mono-cvs.ximian.com>
Sat, 14 Oct 2006 08:22:14 +0000 (08:22 -0000)
        * ComponentsLocation.cs: Changed order to match MS.
        * BootstrapperBuilder.cs: Added GetOutputFolders ().
        * IProductCollection.cs, ProductCollection.cs: Changed indexer to
        method.

svn path=/trunk/mcs/; revision=66673

mcs/class/Microsoft.Build.Tasks/Microsoft.Build.Tasks.Deployment.Bootstrapper/BootstrapperBuilder.cs
mcs/class/Microsoft.Build.Tasks/Microsoft.Build.Tasks.Deployment.Bootstrapper/ChangeLog
mcs/class/Microsoft.Build.Tasks/Microsoft.Build.Tasks.Deployment.Bootstrapper/ComponentsLocation.cs
mcs/class/Microsoft.Build.Tasks/Microsoft.Build.Tasks.Deployment.Bootstrapper/IProductCollection.cs
mcs/class/Microsoft.Build.Tasks/Microsoft.Build.Tasks.Deployment.Bootstrapper/ProductCollection.cs

index 09cb9143fc8503bbcc17fee53639c6e280f2aaf2..60e6eb420eb43b031bfae180979e935726ff3441 100644 (file)
@@ -54,10 +54,17 @@ namespace Microsoft.Build.Tasks.Deployment.Bootstrapper {
                        get { return products; }
                }
                
+               [MonoTODO]
                public BuildResults Build (BuildSettings settings)
                {
                        throw new NotImplementedException ();
                }
+               
+               [MonoTODO]
+               public string[] GetOutputFolders (string[] productCodes, string culture, string fallbackCulture)
+               {
+                       throw new NotImplementedException ();
+               }
        }
 }
 
index 94de63c36a9b43c30966d934cc344dca552f32ab..800623e39cc2a5dc5f8e6fae02511449ddb46a31 100644 (file)
@@ -1,3 +1,10 @@
+2006-10-14  Marek Sieradzki  <marek.sieradzki@gmail.com>
+
+       * ComponentsLocation.cs: Changed order to match MS.
+       * BootstrapperBuilder.cs: Added GetOutputFolders ().
+       * IProductCollection.cs, ProductCollection.cs: Changed indexer to
+       method.
+
 2006-10-12  Marek Sieradzki  <marek.sieradzki@gmail.com>
 
        * IProductBuilderCollection.cs
index a50332e21092cc8f17f6dffb9cab96ab8ccec078..1da9e5b851e5a9ebe40a082e544243910133d3cf 100644 (file)
@@ -36,9 +36,9 @@ namespace Microsoft.Build.Tasks.Deployment.Bootstrapper {
        [Guid ("12F49949-7B60-49CD-B6A0-2B5E4A638AAF")]
        [ComVisible (true)]
        public enum ComponentsLocation {
-               Absolute,
                HomeSite,
-               Relative
+               Relative,
+               Absolute
        }
 }
 
index 59ad63e5523c62bdde67306a4592db443d898aae..12a541e89e47627816b9b123a33280b9fbfa60e2 100644 (file)
@@ -42,9 +42,7 @@ namespace Microsoft.Build.Tasks.Deployment.Bootstrapper {
                        get;
                }
                
-               Product this [int index] {
-                       get;
-               }
+               Product Item (int index);
                
                Product Product (string productCode);
        }
index 1ba6b9db8a6974279900fbcc3d77bb93ffd0033f..c379a5430ef45742d4b97958ac0bd443ddc1ca3f 100644 (file)
@@ -51,8 +51,9 @@ namespace Microsoft.Build.Tasks.Deployment.Bootstrapper {
                }
                
                [MonoTODO]
-               public Product this [int index] {
-                       get { throw new NotImplementedException (); }
+               public Product Item (int index)
+               {
+                       throw new NotImplementedException ();
                }
                
                [MonoTODO]