<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>Dependencies/boo/build/pt/Boo.Lang.resources.dll</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff></diff>
      <filename>Dependencies/boo-extensions/build/Boo.PatternMatching.dll</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>Dependencies/boo-extensions/build/Boo.Pegs.dll</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>Dependencies/boo/build/Boo.Lang.CodeDom.dll</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>Dependencies/boo/build/Boo.Lang.Compiler.dll</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>Dependencies/boo/build/Boo.Lang.Extensions.dll</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>Dependencies/boo/build/Boo.Lang.Interpreter.dll</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>Dependencies/boo/build/Boo.Lang.Parser.dll</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>Dependencies/boo/build/Boo.Lang.Useful.dll</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>Dependencies/boo/build/Boo.Lang.dll</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>Dependencies/boo/build/Boo.Microsoft.Build.Tasks.dll</filename>
    </modified>
    <modified>
      <diff>@@ -1,229 +1,228 @@
-&lt;Project xmlns=&quot;http://schemas.microsoft.com/developer/msbuild/2003&quot;&gt;
-	
-	&lt;UsingTask
-		TaskName=&quot;Microsoft.Build.Tasks.CreateBooManifestResourceName&quot;
-		AssemblyFile=&quot;Boo.Microsoft.Build.Tasks.dll&quot; /&gt;
-	
-	&lt;UsingTask
-		TaskName=&quot;Boo.Microsoft.Build.Tasks.Booc&quot;
-		AssemblyFile=&quot;Boo.Microsoft.Build.Tasks.dll&quot;/&gt;
-	
-	&lt;UsingTask
-		TaskName=&quot;Boo.Microsoft.Build.Tasks.ExecBoo&quot;
-		AssemblyFile=&quot;Boo.Microsoft.Build.Tasks.dll&quot;/&gt;
-	
-	&lt;PropertyGroup&gt;
-		&lt;MSBuildAllProjects Condition=&quot;'$(BooBinPath)' != ''&quot;&gt;
-		$(MSBuildAllProjects);$(BooBinPath)\Boo.Microsoft.Build.targets
-		&lt;/MSBuildAllProjects&gt;
-		&lt;MSBuildAllProjects Condition=&quot;'$(BooBinPath)' == ''&quot;&gt;
-		$(MSBuildAllProjects);$(MSBuildBinPath)\Boo.Microsoft.Build.targets
-		&lt;/MSBuildAllProjects&gt;
-		&lt;DefaultLanguageSourceExtension&gt;.boo&lt;/DefaultLanguageSourceExtension&gt;
-		&lt;Language&gt;Boo&lt;/Language&gt;
-	&lt;/PropertyGroup&gt;
-	
-	&lt;!--
-    The CreateManifestResourceNames target create the manifest resource names
-	from the .RESX files.
-
-        [IN]
-        @(ResxWithNoCulture) - The names the non-culture .RESX files.
-        @(ResxWithCulture) - The names the culture .RESX files.
-        @(NonResxWithNoCulture) - The names of the non-culture non-RESX
-		                          files (like bitmaps, etc).
-								  
-        @(NonResxWithCulture) - The names of the culture non-RESX
-		                       files (like bitmaps, etc).
-
-        [OUT]
-        @(ManifestResourceWithNoCultureName) - The corresponding manifest
-		                                       resource name (.RESOURCE)
-											   
-        @(ManifestResourceWithCultureName) - The corresponding manifest
-		                                     resource name (.RESOURCE)
-											 
-        @(ManifestNonResxWithNoCulture) - The corresponding manifest
-		                                  resource name.
-										  
-        @(ManifestNonResxWithCulture) - The corresponding manifest
-		                               resource name.
-
-    For Boo applications the transformation is like:
-
-        Resources1.resx =&gt; RootNamespace.Resources1 =&gt; Build into main assembly
-        
-		SubFolder\Resources1.resx =&gt;
-			RootNamespace.SubFolder.Resources1 =&gt;
-				Build into main assembly
-        
-		Resources1.fr.resx =&gt;
-			RootNamespace.Resources1.fr =&gt;
-				Build into satellite assembly
-				
-        Resources1.notaculture.resx =&gt;
-			RootNamespace.Resources1.notaculture =&gt;
-				Build into main assembly
-
-    For other project systems, this transformation may be different.
-    --&gt;
-	
-	&lt;PropertyGroup&gt;
-		&lt;CreateManifestResourceNamesDependsOn&gt;
-		&lt;/CreateManifestResourceNamesDependsOn&gt;
-	&lt;/PropertyGroup&gt;
-	
-	&lt;Target
-		Name=&quot;CreateManifestResourceNames&quot;
-		Condition=&quot;'
-		@(ResxWithNoCulture)
-		@(ResxWithCulture)
-		@(NonResxWithNoCulture)
-		@(NonResxWithCulture)'!=''&quot;
-		
-		DependsOnTargets=&quot;$(CreateManifestResourceNamesDependsOn)&quot;
-	&gt;
-		
-		&lt;!-- Create the target resource names for non-culture resx files --&gt;
-		&lt;CreateBooManifestResourceName
-			Condition=&quot;'@(ResxWithNoCulture)'!=''&quot;
-			ResourceFiles=&quot;@(ResxWithNoCulture)&quot;
-			RootNamespace=&quot;$(RootNamespace)&quot;&gt;
-			
-			&lt;Output
-				TaskParameter=&quot;ManifestResourceNames&quot;
-				ItemName=&quot;ManifestResourceWithNoCultureName&quot;/&gt;
-		
-		&lt;/CreateBooManifestResourceName&gt;
-		
-		&lt;!-- Create the target resource names for culture resx files. --&gt;
-		&lt;CreateBooManifestResourceName
-			Condition=&quot;'@(ResxWithCulture)'!=''&quot;
-			ResourceFiles=&quot;@(ResxWithCulture)&quot;
-			RootNamespace=&quot;$(RootNamespace)&quot;&gt;
-			
-			&lt;Output
-				TaskParameter=&quot;ManifestResourceNames&quot;
-				ItemName=&quot;ManifestResourceWithCultureName&quot;/&gt;
-		
-		&lt;/CreateBooManifestResourceName&gt;
-		
-		&lt;!-- Create the target resource names for non-culture non-resx files. --&gt;
-		&lt;CreateBooManifestResourceName
-			Condition=&quot;'@(NonResxWithNoCulture)'!=''&quot;
-			ResourceFiles=&quot;@(NonResxWithNoCulture)&quot;
-			RootNamespace=&quot;$(RootNamespace)&quot;&gt;
-			
-			&lt;Output
-				TaskParameter=&quot;ManifestResourceNames&quot;
-				ItemName=&quot;ManifestNonResxWithNoCulture&quot;/&gt;
-		
-		&lt;/CreateBooManifestResourceName&gt;
-		
-		&lt;!-- Create the target resource names for culture non-resx files. --&gt;
-		&lt;CreateBooManifestResourceName
-			Condition=&quot;'@(NonResxWithCulture)'!=''&quot;
-			ResourceFiles=&quot;@(NonResxWithCulture)&quot;
-			RootNamespace=&quot;$(RootNamespace)&quot;&gt;
-			
-			&lt;Output
-				TaskParameter=&quot;ManifestResourceNames&quot;
-				ItemName=&quot;ManifestNonResxWithCulture&quot;/&gt;
-		
-		&lt;/CreateBooManifestResourceName&gt;
-	&lt;/Target&gt;
-	
-	&lt;PropertyGroup&gt;
-		
-		&lt;!--
-		&quot;None&quot; is not technically a valid DebugType, so we can't pass it
-		in as such to the compiler.  So here, we modify the properties so
-	    they make sense.
-		--&gt;
-		&lt;DebugSymbols Condition=&quot;'$(DebugType)' == 'none'&quot;&gt;false&lt;/DebugSymbols&gt;
-		&lt;DebugType    Condition=&quot;'$(DebugType)' == 'none'&quot;&gt;&lt;/DebugType&gt;
-		
-		&lt;!-- Provide a facility to override UseHostCompilerIfAvailable--&gt;
-		&lt;UseHostCompilerIfAvailable
-			Condition=&quot;'$(UseHostCompilerIfAvailable)' == ''&quot;&gt;
-		true
-		&lt;/UseHostCompilerIfAvailable&gt;
-	
-	&lt;/PropertyGroup&gt;
-	
-	&lt;ItemGroup&gt;
-		&lt;DocFileItem
-			Include=&quot;$(DocumentationFile)&quot;
-			Condition=&quot;'$(DocumentationFile)'!=''&quot;&gt;
-			
-			&lt;InProject&gt;false&lt;/InProject&gt;
-		&lt;/DocFileItem&gt;
-	&lt;/ItemGroup&gt;
-	
-	&lt;PropertyGroup&gt;
-		&lt;CoreCompileDependsOn&gt;
-		_ComputeNonExistentFileProperty
-		&lt;/CoreCompileDependsOn&gt;
-	&lt;/PropertyGroup&gt;
-	
-	&lt;PropertyGroup Condition=&quot; '$(BoocToolPath)' != '' &quot;&gt;
-		&lt;ReferencePath&gt;$(ReferencePath);$(BoocToolPath)&lt;/ReferencePath&gt;
-	&lt;/PropertyGroup&gt;
-	&lt;PropertyGroup Condition=&quot; '$(BoocToolPath)' == '' &quot;&gt;
-		&lt;ReferencePath&gt;$(ReferencePath);$(BooBinPath)&lt;/ReferencePath&gt;
-	&lt;/PropertyGroup&gt;
-	
-	&lt;Target
-		Name=&quot;CoreCompile&quot;
-		Inputs=&quot;$(MSBuildAllProjects);
-		        @(Compile);
-		        @(ManifestResourceWithNoCulture);
-		        $(ApplicationIcon);
-		        $(AssemblyOriginatorKeyFile);
-		        @(ManifestNonResxWithNoCultureOnDisk);
-		        @(ReferencePath);
-		        @(CompiledLicenseFile)&quot;
-		Outputs=&quot;@(IntermediateAssembly)&quot;
-		DependsOnTargets=&quot;$(CoreCompileDependsOn)&quot;
-	&gt;
-		
-		&lt;Booc
-			OutputAssembly=&quot;@(IntermediateAssembly)&quot;
-			References=&quot;@(ReferencePath)&quot;
-			Resources= &quot;@(ManifestResourceWithNoCulture);
-			            @(ManifestNonResxWithNoCultureOnDisk);
-			            @(CompiledLicenseFile)&quot;
-			ResponseFiles=&quot;$(CompilerResponseFile)&quot;
-			Sources=&quot;@(Compile)&quot;
-			TargetType=&quot;$(OutputType)&quot;
-			ToolPath=&quot;$(BoocToolPath)&quot;
-			Pipeline=&quot;$(Pipeline)&quot;
-			WhiteSpaceAgnostic=&quot;$(WhiteSpaceAgnostic)&quot;
-			Ducky=&quot;$(Ducky)&quot;
-			Verbosity=&quot;$(BoocVerbosity)&quot;
-			Culture=&quot;$(AssemblyCulture)&quot;
-			SourceDirectory=&quot;$(SourceDirectory)&quot;
-			KeyFile=&quot;$(AssemblyOriginatorKeyFile)&quot;
-			KeyContainer=&quot;$(AssemblyKeyContainerName)&quot;
-			EmitDebugInformation=&quot;$(DebugSymbols)&quot;
-			DelaySign=&quot;$(DelaySign)&quot;
-			NoStandardLib=&quot;$(NoStdLib)&quot;
-			DefineSymbols=&quot;$(DefineConstants)&quot;
-			GenerateFullPaths=&quot;$(GenerateFullPaths)&quot;
-		/&gt;
-		
-		&lt;Copy
-			Condition=&quot; '$(BoocToolPath)' == '' &quot;
-			SkipUnchangedFiles=&quot;true&quot;
-			SourceFiles=&quot;$(BooBinPath)\Boo.Lang.dll&quot;
-			DestinationFolder=&quot;$(OutputPath)&quot;/&gt;
-		
-		&lt;Copy
-			Condition=&quot; '$(BoocToolPath)' != '' &quot;
-			SkipUnchangedFiles=&quot;true&quot;
-			SourceFiles=&quot;$(BoocToolPath)\Boo.Lang.dll&quot;
-			DestinationFolder=&quot;$(OutputPath)&quot;/&gt;
-	&lt;/Target&gt;
-	
-	&lt;Import Project=&quot;$(MSBuildBinPath)\Microsoft.Common.targets&quot; /&gt;
-&lt;/Project&gt;
+&lt;Project xmlns=&quot;http://schemas.microsoft.com/developer/msbuild/2003&quot;&gt;
+	
+	&lt;UsingTask
+		TaskName=&quot;Microsoft.Build.Tasks.CreateBooManifestResourceName&quot;
+		AssemblyFile=&quot;Boo.Microsoft.Build.Tasks.dll&quot; /&gt;
+	
+	&lt;UsingTask
+		TaskName=&quot;Boo.Microsoft.Build.Tasks.Booc&quot;
+		AssemblyFile=&quot;Boo.Microsoft.Build.Tasks.dll&quot;/&gt;
+	
+	&lt;UsingTask
+		TaskName=&quot;Boo.Microsoft.Build.Tasks.ExecBoo&quot;
+		AssemblyFile=&quot;Boo.Microsoft.Build.Tasks.dll&quot;/&gt;
+	
+	&lt;PropertyGroup&gt;
+		&lt;MSBuildAllProjects Condition=&quot;'$(BooBinPath)' != ''&quot;&gt;
+		$(MSBuildAllProjects);$(BooBinPath)\Boo.Microsoft.Build.targets
+		&lt;/MSBuildAllProjects&gt;
+		&lt;MSBuildAllProjects Condition=&quot;'$(BooBinPath)' == ''&quot;&gt;
+		$(MSBuildAllProjects);$(MSBuildBinPath)\Boo.Microsoft.Build.targets
+		&lt;/MSBuildAllProjects&gt;
+		&lt;DefaultLanguageSourceExtension&gt;.boo&lt;/DefaultLanguageSourceExtension&gt;
+		&lt;Language&gt;Boo&lt;/Language&gt;
+	&lt;/PropertyGroup&gt;
+	
+	&lt;!--
+    The CreateManifestResourceNames target create the manifest resource names
+	from the .RESX files.
+
+        [IN]
+        @(ResxWithNoCulture) - The names the non-culture .RESX files.
+        @(ResxWithCulture) - The names the culture .RESX files.
+        @(NonResxWithNoCulture) - The names of the non-culture non-RESX
+		                          files (like bitmaps, etc).
+								  
+        @(NonResxWithCulture) - The names of the culture non-RESX
+		                       files (like bitmaps, etc).
+
+        [OUT]
+        @(ManifestResourceWithNoCultureName) - The corresponding manifest
+		                                       resource name (.RESOURCE)
+											   
+        @(ManifestResourceWithCultureName) - The corresponding manifest
+		                                     resource name (.RESOURCE)
+											 
+        @(ManifestNonResxWithNoCulture) - The corresponding manifest
+		                                  resource name.
+										  
+        @(ManifestNonResxWithCulture) - The corresponding manifest
+		                               resource name.
+
+    For Boo applications the transformation is like:
+
+        Resources1.resx =&gt; RootNamespace.Resources1 =&gt; Build into main assembly
+        
+		SubFolder\Resources1.resx =&gt;
+			RootNamespace.SubFolder.Resources1 =&gt;
+				Build into main assembly
+        
+		Resources1.fr.resx =&gt;
+			RootNamespace.Resources1.fr =&gt;
+				Build into satellite assembly
+				
+        Resources1.notaculture.resx =&gt;
+			RootNamespace.Resources1.notaculture =&gt;
+				Build into main assembly
+
+    For other project systems, this transformation may be different.
+    --&gt;
+	
+	&lt;PropertyGroup&gt;
+		&lt;CreateManifestResourceNamesDependsOn&gt;
+		&lt;/CreateManifestResourceNamesDependsOn&gt;
+	&lt;/PropertyGroup&gt;
+	
+	&lt;Target
+		Name=&quot;CreateManifestResourceNames&quot;
+		Condition=&quot;'
+		@(ResxWithNoCulture)
+		@(ResxWithCulture)
+		@(NonResxWithNoCulture)
+		@(NonResxWithCulture)'!=''&quot;
+		
+		DependsOnTargets=&quot;$(CreateManifestResourceNamesDependsOn)&quot;
+	&gt;
+		
+		&lt;!-- Create the target resource names for non-culture resx files --&gt;
+		&lt;CreateBooManifestResourceName
+			Condition=&quot;'@(ResxWithNoCulture)'!=''&quot;
+			ResourceFiles=&quot;@(ResxWithNoCulture)&quot;
+			RootNamespace=&quot;$(RootNamespace)&quot;&gt;
+			
+			&lt;Output
+				TaskParameter=&quot;ManifestResourceNames&quot;
+				ItemName=&quot;ManifestResourceWithNoCultureName&quot;/&gt;
+		
+		&lt;/CreateBooManifestResourceName&gt;
+		
+		&lt;!-- Create the target resource names for culture resx files. --&gt;
+		&lt;CreateBooManifestResourceName
+			Condition=&quot;'@(ResxWithCulture)'!=''&quot;
+			ResourceFiles=&quot;@(ResxWithCulture)&quot;
+			RootNamespace=&quot;$(RootNamespace)&quot;&gt;
+			
+			&lt;Output
+				TaskParameter=&quot;ManifestResourceNames&quot;
+				ItemName=&quot;ManifestResourceWithCultureName&quot;/&gt;
+		
+		&lt;/CreateBooManifestResourceName&gt;
+		
+		&lt;!-- Create the target resource names for non-culture non-resx files. --&gt;
+		&lt;CreateBooManifestResourceName
+			Condition=&quot;'@(NonResxWithNoCulture)'!=''&quot;
+			ResourceFiles=&quot;@(NonResxWithNoCulture)&quot;
+			RootNamespace=&quot;$(RootNamespace)&quot;&gt;
+			
+			&lt;Output
+				TaskParameter=&quot;ManifestResourceNames&quot;
+				ItemName=&quot;ManifestNonResxWithNoCulture&quot;/&gt;
+		
+		&lt;/CreateBooManifestResourceName&gt;
+		
+		&lt;!-- Create the target resource names for culture non-resx files. --&gt;
+		&lt;CreateBooManifestResourceName
+			Condition=&quot;'@(NonResxWithCulture)'!=''&quot;
+			ResourceFiles=&quot;@(NonResxWithCulture)&quot;
+			RootNamespace=&quot;$(RootNamespace)&quot;&gt;
+			
+			&lt;Output
+				TaskParameter=&quot;ManifestResourceNames&quot;
+				ItemName=&quot;ManifestNonResxWithCulture&quot;/&gt;
+		
+		&lt;/CreateBooManifestResourceName&gt;
+	&lt;/Target&gt;
+	
+	&lt;PropertyGroup&gt;
+		
+		&lt;!--
+		&quot;None&quot; is not technically a valid DebugType, so we can't pass it
+		in as such to the compiler.  So here, we modify the properties so
+	    they make sense.
+		--&gt;
+		&lt;DebugSymbols Condition=&quot;'$(DebugType)' == 'none'&quot;&gt;false&lt;/DebugSymbols&gt;
+		&lt;DebugType    Condition=&quot;'$(DebugType)' == 'none'&quot;&gt;&lt;/DebugType&gt;
+		
+		&lt;!-- Provide a facility to override UseHostCompilerIfAvailable--&gt;
+		&lt;UseHostCompilerIfAvailable
+			Condition=&quot;'$(UseHostCompilerIfAvailable)' == ''&quot;&gt;
+		true
+		&lt;/UseHostCompilerIfAvailable&gt;
+	
+	&lt;/PropertyGroup&gt;
+	
+	&lt;ItemGroup&gt;
+		&lt;DocFileItem
+			Include=&quot;$(DocumentationFile)&quot;
+			Condition=&quot;'$(DocumentationFile)'!=''&quot;&gt;
+			
+			&lt;InProject&gt;false&lt;/InProject&gt;
+		&lt;/DocFileItem&gt;
+	&lt;/ItemGroup&gt;
+	
+	&lt;PropertyGroup&gt;
+		&lt;CoreCompileDependsOn&gt;
+		_ComputeNonExistentFileProperty
+		&lt;/CoreCompileDependsOn&gt;
+	&lt;/PropertyGroup&gt;
+	
+	&lt;PropertyGroup Condition=&quot; '$(BoocToolPath)' != '' &quot;&gt;
+		&lt;ReferencePath&gt;$(ReferencePath);$(BoocToolPath)&lt;/ReferencePath&gt;
+	&lt;/PropertyGroup&gt;
+	&lt;PropertyGroup Condition=&quot; '$(BoocToolPath)' == '' &quot;&gt;
+		&lt;ReferencePath&gt;$(ReferencePath);$(BooBinPath)&lt;/ReferencePath&gt;
+	&lt;/PropertyGroup&gt;
+	
+	&lt;Target
+		Name=&quot;CoreCompile&quot;
+		Inputs=&quot;$(MSBuildAllProjects);
+		        @(Compile);
+		        @(ManifestResourceWithNoCulture);
+		        $(ApplicationIcon);
+		        $(AssemblyOriginatorKeyFile);
+		        @(ManifestNonResxWithNoCultureOnDisk);
+		        @(ReferencePath);
+		        @(CompiledLicenseFile)&quot;
+		Outputs=&quot;@(IntermediateAssembly)&quot;
+		DependsOnTargets=&quot;$(CoreCompileDependsOn)&quot;
+	&gt;
+		
+		&lt;Booc
+			OutputAssembly=&quot;@(IntermediateAssembly)&quot;
+			References=&quot;@(ReferencePath)&quot;
+			Resources= &quot;@(ManifestResourceWithNoCulture);
+			            @(ManifestNonResxWithNoCultureOnDisk);
+			            @(CompiledLicenseFile)&quot;
+			ResponseFiles=&quot;$(CompilerResponseFile)&quot;
+			Sources=&quot;@(Compile)&quot;
+			TargetType=&quot;$(OutputType)&quot;
+			ToolPath=&quot;$(BoocToolPath)&quot;
+			Pipeline=&quot;$(Pipeline)&quot;
+			WhiteSpaceAgnostic=&quot;$(WhiteSpaceAgnostic)&quot;
+			Ducky=&quot;$(Ducky)&quot;
+			Verbosity=&quot;$(BoocVerbosity)&quot;
+			Culture=&quot;$(AssemblyCulture)&quot;
+			SourceDirectory=&quot;$(SourceDirectory)&quot;
+			KeyFile=&quot;$(AssemblyOriginatorKeyFile)&quot;
+			KeyContainer=&quot;$(AssemblyKeyContainerName)&quot;
+			EmitDebugInformation=&quot;$(DebugSymbols)&quot;
+			DelaySign=&quot;$(DelaySign)&quot;
+			NoStandardLib=&quot;$(NoStdLib)&quot;
+			DefineSymbols=&quot;$(DefineConstants)&quot;
+		/&gt;
+		
+		&lt;Copy
+			Condition=&quot; '$(BoocToolPath)' == '' &quot;
+			SkipUnchangedFiles=&quot;true&quot;
+			SourceFiles=&quot;$(BooBinPath)\Boo.Lang.dll&quot;
+			DestinationFolder=&quot;$(OutputPath)&quot;/&gt;
+		
+		&lt;Copy
+			Condition=&quot; '$(BoocToolPath)' != '' &quot;
+			SkipUnchangedFiles=&quot;true&quot;
+			SourceFiles=&quot;$(BoocToolPath)\Boo.Lang.dll&quot;
+			DestinationFolder=&quot;$(OutputPath)&quot;/&gt;
+	&lt;/Target&gt;
+	
+	&lt;Import Project=&quot;$(MSBuildBinPath)\Microsoft.Common.targets&quot; /&gt;
+&lt;/Project&gt;</diff>
      <filename>Dependencies/boo/build/Boo.Microsoft.Build.targets</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>Dependencies/boo/build/Boo.NAnt.Tasks.dll</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>Dependencies/boo/build/boo.exe</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>Dependencies/boo/build/booc.exe</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
-&lt;configuration&gt;
-&lt;startup&gt;
-&lt;supportedRuntime version=&quot;v2.0.50727&quot;/&gt;
-&lt;supportedRuntime version=&quot;v1.1.4322&quot;/&gt;
-&lt;/startup&gt;
-&lt;/configuration&gt;
+&lt;configuration&gt;
+&lt;startup&gt;
+&lt;supportedRuntime version=&quot;v2.0.50727&quot;/&gt;
+&lt;supportedRuntime version=&quot;v1.1.4322&quot;/&gt;
+&lt;/startup&gt;
+&lt;/configuration&gt;</diff>
      <filename>Dependencies/boo/build/booc.exe.config</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>Dependencies/boo/build/booi.exe</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
-&lt;configuration&gt;
-&lt;startup&gt;
-&lt;supportedRuntime version=&quot;v2.0.50727&quot;/&gt;
-&lt;supportedRuntime version=&quot;v1.1.4322&quot;/&gt;
-&lt;/startup&gt;
-&lt;/configuration&gt;
+&lt;configuration&gt;
+&lt;startup&gt;
+&lt;supportedRuntime version=&quot;v2.0.50727&quot;/&gt;
+&lt;supportedRuntime version=&quot;v1.1.4322&quot;/&gt;
+&lt;/startup&gt;
+&lt;/configuration&gt;</diff>
      <filename>Dependencies/boo/build/booi.exe.config</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>Dependencies/boo/build/booish.exe</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
-&lt;configuration&gt;
-&lt;startup&gt;
-&lt;supportedRuntime version=&quot;v2.0.50727&quot;/&gt;
-&lt;supportedRuntime version=&quot;v1.1.4322&quot;/&gt;
-&lt;/startup&gt;
-&lt;/configuration&gt;
+&lt;configuration&gt;
+&lt;startup&gt;
+&lt;supportedRuntime version=&quot;v2.0.50727&quot;/&gt;
+&lt;supportedRuntime version=&quot;v1.1.4322&quot;/&gt;
+&lt;/startup&gt;
+&lt;/configuration&gt;</diff>
      <filename>Dependencies/boo/build/booish.exe.config</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>Dependencies/boo-extensions/build/Boo.Adt.dll</filename>
    </removed>
    <removed>
      <filename>Dependencies/boo-extensions/build/Boo.Adt.pdb</filename>
    </removed>
    <removed>
      <filename>Dependencies/boo-extensions/build/Boo.PatternMatching.pdb</filename>
    </removed>
    <removed>
      <filename>Dependencies/boo-extensions/build/Boo.Pegs.pdb</filename>
    </removed>
    <removed>
      <filename>Dependencies/boo/build/Boo.Lang.CodeDom.pdb</filename>
    </removed>
    <removed>
      <filename>Dependencies/boo/build/Boo.Lang.Compiler.pdb</filename>
    </removed>
    <removed>
      <filename>Dependencies/boo/build/Boo.Lang.Extensions.pdb</filename>
    </removed>
    <removed>
      <filename>Dependencies/boo/build/Boo.Lang.Interpreter.pdb</filename>
    </removed>
    <removed>
      <filename>Dependencies/boo/build/Boo.Lang.Parser.pdb</filename>
    </removed>
    <removed>
      <filename>Dependencies/boo/build/Boo.Lang.Useful.pdb</filename>
    </removed>
    <removed>
      <filename>Dependencies/boo/build/Boo.Lang.pdb</filename>
    </removed>
    <removed>
      <filename>Dependencies/boo/build/Boo.Microsoft.Build.Tasks.pdb</filename>
    </removed>
    <removed>
      <filename>Dependencies/boo/build/Boo.NAnt.Tasks.pdb</filename>
    </removed>
    <removed>
      <filename>Dependencies/boo/build/boo.pdb</filename>
    </removed>
    <removed>
      <filename>Dependencies/boo/build/booc.pdb</filename>
    </removed>
    <removed>
      <filename>Dependencies/boo/build/booi.pdb</filename>
    </removed>
    <removed>
      <filename>Dependencies/boo/build/booish.pdb</filename>
    </removed>
    <removed>
      <filename>Dependencies/boo/build/it/strings.it.resources</filename>
    </removed>
    <removed>
      <filename>Dependencies/boo/build/pt/strings.pt.resources</filename>
    </removed>
    <removed>
      <filename>Dependencies/boo/build/strings.resources</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>87e02ebe49be6923db7855d330ebc69cbc362c15</id>
    </parent>
  </parents>
  <author>
    <name>Jeffery Olson</name>
    <email>olson.jeffery@gmail.com</email>
  </author>
  <url>http://github.com/olsonjeffery/boolangstudio/commit/7b0b9612f1adb89cf01f28574905895352af8199</url>
  <id>7b0b9612f1adb89cf01f28574905895352af8199</id>
  <committed-date>2008-08-28T09:19:20-07:00</committed-date>
  <authored-date>2008-08-28T09:19:20-07:00</authored-date>
  <message>Changed boo dependencies to track stable releases, instead of svn revisions. This means that BooLangStudio now ships with the stable boo 0.8.2, instead of tracking the latest from subversion. For those brave souls who insist on bleeding edge boo, the option will still be available. Also, Boo.Pegs was rebuilt with the 0.8.2 boo assemblies. Also, no more pdbs!

Signed-off-by: Jeffery Olson &lt;olson.jeffery@gmail.com&gt;</message>
  <tree>dbbb9c0e478e162be889c64f2b881e5ecca6def4</tree>
  <committer>
    <name>Jeffery Olson</name>
    <email>olson.jeffery@gmail.com</email>
  </committer>
</commit>
