Skip to content

Commit

Permalink
added bad css syntax to demo
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith committed Jul 19, 2012
1 parent 30fd660 commit dcebbbf
Show file tree
Hide file tree
Showing 82 changed files with 148 additions and 322 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
11 changes: 11 additions & 0 deletions Demo/BadSyntax.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

/* -------------------------------------------------------------------------
* !!! AUTOMATICALLY GENERATED CODE !!!
* -------------------------------------------------------------------------
* This file was automatically generated by the OrangeBits compiler.
* Compiled on: 7/19/2012 9:35:05 AM
* Compiled by: REDMOND\justbe
* Source: C:\Users\justbe\Dropbox\Code\OrangeBits\Demo\BadSyntax.less
* -------------------------------------------------------------------------*/


Empty file added Demo/BadSyntax.min.css
Empty file.
Binary file modified Demo/bin/System.Web.Helpers.dll
Binary file not shown.
Binary file modified Demo/bin/System.Web.Razor.dll
Binary file not shown.
Binary file modified Demo/bin/System.Web.WebPages.Administration.dll
Binary file not shown.
Binary file modified Demo/bin/System.Web.WebPages.Deployment.dll
Binary file not shown.
Binary file modified Demo/bin/System.Web.WebPages.Razor.dll
Binary file not shown.
Binary file modified Demo/bin/System.Web.WebPages.dll
Binary file not shown.
Binary file modified Demo/bin/WebMatrix.Data.dll
Binary file not shown.
Binary file modified Demo/bin/WebMatrix.WebData.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion Demo/lessTest.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* !!! AUTOMATICALLY GENERATED CODE !!!
* -------------------------------------------------------------------------
* This file was automatically generated by the OrangeBits compiler.
* Compiled on: 6/23/2012 11:58:12 PM
* Compiled on: 7/19/2012 9:37:48 AM
* Compiled by: REDMOND\justbe
* Source: C:\Users\justbe\Dropbox\Code\OrangeBits\Demo\lessTest.less
* -------------------------------------------------------------------------*/
Expand Down
1 change: 0 additions & 1 deletion Demo/lessTest.less
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,3 @@
padding: @margin / 2;
margin: @margin / 2;
}

3 changes: 1 addition & 2 deletions Demo/lessTest.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified OrangeBits.v11.suo
Binary file not shown.
7 changes: 4 additions & 3 deletions OrangeBits/Compilers/CssMinifier.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ public class CssMinifier : ICompiler
public CompileResults Compile(string inPath, string outPath)
{
using (StreamReader sr = new StreamReader(inPath))
{
{
string content = sr.ReadToEnd();
string output = CssCompressor.Compress(content);
var x = new CssCompressor();
string output = x.Compress(content);
using (StreamWriter sw = new StreamWriter(outPath))
{
{
//sw.WriteLine(OrangeBits.GetHeader(inPath));
sw.Write(output);
}
Expand Down
4 changes: 2 additions & 2 deletions OrangeBits/Compilers/JsMinifier.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ public CompileResults Compile(string inPath, string outPath)
using (StreamReader sr = new StreamReader(inPath))
{
string content = sr.ReadToEnd();
string output = JavaScriptCompressor.Compress(content);
JavaScriptCompressor x = new JavaScriptCompressor();
string output = x.Compress(content);
using (StreamWriter sw = new StreamWriter(outPath))
{
//sw.WriteLine(OrangeBits.GetHeader(inPath));
sw.Write(output);
}
}
Expand Down
17 changes: 12 additions & 5 deletions OrangeBits/Compilers/LessCompiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,18 @@ public CompileResults Compile(string inPath, string outPath)
var fileReader = new FileReader();
var source = fileReader.GetFileContents(inPath);
var output = engine.TransformToCss(source, inPath);
using (StreamWriter sw = new StreamWriter(outPath))
{
sw.WriteLine(OrangeBits.GetHeader(inPath));
sw.Write(output);
}
if (engine.LastTransformationSuccessful)
{
using (StreamWriter sw = new StreamWriter(outPath))
{
sw.WriteLine(OrangeBits.GetHeader(inPath));
sw.Write(output);
}
}
else
{
throw new Exception("Error compiling LESS");
}
}
return null;
}
Expand Down
52 changes: 26 additions & 26 deletions OrangeBits/OrangeBits.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,55 +31,54 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="ComImports.ActiveScript, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\Code\SassAndCoffee\SassAndCoffee.Core\bin\Debug\ComImports.ActiveScript.dll</HintPath>
</Reference>
<Reference Include="ComImports.JavaScriptEngines, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\Code\SassAndCoffee\SassAndCoffee.Core\bin\Debug\ComImports.JavaScriptEngines.dll</HintPath>
<Reference Include="dotless.ClientOnly">
<HintPath>..\packages\DotlessClientOnly.1.3.0.4\lib\dotless.ClientOnly.dll</HintPath>
</Reference>
<Reference Include="dotless.Core, Version=1.3.0.3, Culture=neutral, PublicKeyToken=96b446c9e63eae34, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\dotless.1.3.0.3\lib\dotless.Core.dll</HintPath>
<Reference Include="EcmaScript.NET">
<HintPath>..\packages\YUICompressor.NET.2.0.0.0\lib\NET20\EcmaScript.NET.dll</HintPath>
</Reference>
<Reference Include="EcmaScript.NET.modified">
<HintPath>..\packages\YUICompressor.NET.1.7.1.0\lib\net35\EcmaScript.NET.modified.dll</HintPath>
<Reference Include="Iesi.Collections">
<HintPath>..\packages\YUICompressor.NET.2.0.0.0\lib\NET20\Iesi.Collections.dll</HintPath>
</Reference>
<Reference Include="IronRuby">
<Reference Include="IronRuby, Version=1.1.3.0, Culture=neutral, PublicKeyToken=7f709c5b713576e1, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\IronRuby.1.1.3\Lib\IronRuby.dll</HintPath>
</Reference>
<Reference Include="IronRuby.Libraries">
<Reference Include="IronRuby.Libraries, Version=1.1.3.0, Culture=neutral, PublicKeyToken=7f709c5b713576e1, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\IronRuby.1.1.3\Lib\IronRuby.Libraries.dll</HintPath>
</Reference>
<Reference Include="IronRuby.Libraries.Yaml">
<Reference Include="IronRuby.Libraries.Yaml, Version=1.1.3.0, Culture=neutral, PublicKeyToken=7f709c5b713576e1, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\IronRuby.1.1.3\Lib\IronRuby.Libraries.Yaml.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Dynamic">
<Reference Include="Microsoft.Dynamic, Version=1.1.0.20, Culture=neutral, PublicKeyToken=7f709c5b713576e1, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\IronRuby.1.1.3\Lib\Microsoft.Dynamic.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Scripting">
<Reference Include="Microsoft.Scripting, Version=1.1.0.20, Culture=neutral, PublicKeyToken=7f709c5b713576e1, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\IronRuby.1.1.3\Lib\Microsoft.Scripting.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Scripting.Metadata">
<Reference Include="Microsoft.Scripting.Metadata, Version=1.1.0.20, Culture=neutral, PublicKeyToken=7f709c5b713576e1, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\IronRuby.1.1.3\Lib\Microsoft.Scripting.Metadata.dll</HintPath>
</Reference>
<Reference Include="Microsoft.WebMatrix.Extensibility">
<HintPath>C:\Program Files (x86)\Microsoft WebMatrix\Microsoft.WebMatrix.Extensibility.dll</HintPath>
</Reference>
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="SassAndCoffee.AspNet">
<HintPath>..\packages\SassAndCoffee.AspNet.2.0.2.0\lib\net40\SassAndCoffee.AspNet.dll</HintPath>
</Reference>
<Reference Include="SassAndCoffee.Core, Version=2.0.2.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\SassAndCoffee.Core.2.0.2.0\lib\net40-Client\SassAndCoffee.Core.dll</HintPath>
</Reference>
<Reference Include="SassAndCoffee.JavaScript">
<Reference Include="SassAndCoffee.JavaScript, Version=2.0.2.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\SassAndCoffee.JavaScript.2.0.2.0\lib\net40-Client\SassAndCoffee.JavaScript.dll</HintPath>
</Reference>
<Reference Include="SassAndCoffee.Ruby">
<Reference Include="SassAndCoffee.Ruby, Version=2.0.2.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\SassAndCoffee.Ruby.2.0.2.0\lib\net40-Client\SassAndCoffee.Ruby.dll</HintPath>
</Reference>
<Reference Include="System" />
Expand All @@ -93,8 +92,9 @@
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="WindowsBase" />
<Reference Include="Yahoo.Yui.Compressor">
<HintPath>..\packages\YUICompressor.NET.1.7.1.0\lib\net35\Yahoo.Yui.Compressor.dll</HintPath>
<Reference Include="Yahoo.Yui.Compressor, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\YUICompressor.NET.2.0.0.0\lib\NET20\Yahoo.Yui.Compressor.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down Expand Up @@ -141,7 +141,7 @@
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>if not exist "$(USERPROFILE)\AppData\Local\Microsoft\WebMatrix\Extensions\20\$(TargetName)" md "$(USERPROFILE)\AppData\Local\Microsoft\WebMatrix\Extensions\20\$(TargetName)"
xcopy /E "$(TargetDir)*" "$(USERPROFILE)\AppData\Local\Microsoft\WebMatrix\Extensions\20\$(TargetName)" &gt; NUL</PostBuildEvent>
xcopy /E /Y "$(TargetDir)*" "$(USERPROFILE)\AppData\Local\Microsoft\WebMatrix\Extensions\20\$(TargetName)" &gt; NUL</PostBuildEvent>
</PropertyGroup>
<PropertyGroup>
<PreBuildEvent>if exist "$(TEMP)\WebMatrix.crash.info" del "$(TEMP)\WebMatrix.crash.info"
Expand Down
7 changes: 7 additions & 0 deletions OrangeBits/OrangeJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,14 @@ public enum JobType
Optimize
}

public enum JobSource
{
Save,
Context
}

public JobType Type { get; set; }
public JobSource Source { get; set; }
public string Path { get; set; }
public DateTime Time { get; set; }

Expand Down
4 changes: 1 addition & 3 deletions OrangeBits/PrefUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,7 @@ public string getPathKey(string path, string propertyName)
path = Directory.GetParent(path).FullName;
}

} while (true);

return null;
} while (true);
}
#endregion

Expand Down
9 changes: 6 additions & 3 deletions OrangeBits/WebMatrixExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,8 @@ protected void SourceFileChanged(object source, FileSystemEventArgs e)
_worker.AddItem(new OrangeJob()
{
Path = e.FullPath,
Type = jobType
Type = jobType,
Source = OrangeJob.JobSource.Save
});

}
Expand Down Expand Up @@ -268,7 +269,8 @@ protected void AddMultiMenu(ContextMenuOpeningEventArgs e, string[] supportedExt
jobs.Add(new OrangeJob()
{
Path = f.FullName,
Type = jobType
Type = jobType,
Source = OrangeJob.JobSource.Context
});
}
}
Expand All @@ -280,7 +282,8 @@ protected void AddMultiMenu(ContextMenuOpeningEventArgs e, string[] supportedExt
jobs.Add(new OrangeJob()
{
Path = fsi.Path,
Type = jobType
Type = jobType,
Source = OrangeJob.JobSource.Context
});
}
}
Expand Down
2 changes: 1 addition & 1 deletion OrangeBits/Worker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ protected void ProcessItem(OrangeJob job)
CompileResults results = OrangeCompiler.Process(job);

// show the notification bar to notify the user it happened
host.ShowNotification(results.Message, "Open File", threadedOpenCmd);
//host.ShowNotification(results.Message, "Open File", threadedOpenCmd);

// refresh the tree so the new file (if created) shows up
if (results.IsNewFile)
Expand Down
Binary file removed OrangeBits/bin/Debug/Debug.zip
Binary file not shown.
Binary file removed OrangeBits/bin/Debug/EcmaScript.NET.modified.dll
Binary file not shown.
Binary file modified OrangeBits/bin/Debug/Microsoft.WebMatrix.Extensibility.dll
Binary file not shown.
Binary file modified OrangeBits/bin/Debug/OrangeBits.dll
Binary file not shown.
Binary file modified OrangeBits/bin/Debug/OrangeBits.pdb
Binary file not shown.
Binary file removed OrangeBits/bin/Debug/SassAndCoffee.AspNet.dll
Binary file not shown.
Binary file modified OrangeBits/bin/Debug/Yahoo.Yui.Compressor.dll
Binary file not shown.
Binary file removed OrangeBits/bin/Debug/dotless.Core.dll
Binary file not shown.
Binary file not shown.
62 changes: 61 additions & 1 deletion OrangeBits/obj/Debug/GeneratedInternalTypeHelper.g.cs
Original file line number Diff line number Diff line change
@@ -1,2 +1,62 @@

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.17626
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

namespace XamlGeneratedNamespace {


/// <summary>
/// GeneratedInternalTypeHelper
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper {

/// <summary>
/// CreateInstance
/// </summary>
protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) {
return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic)
| (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture);
}

/// <summary>
/// GetPropertyValue
/// </summary>
protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) {
return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture);
}

/// <summary>
/// SetPropertyValue
/// </summary>
protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) {
propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture);
}

/// <summary>
/// CreateDelegate
/// </summary>
protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) {
return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod
| (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] {
delegateType,
handler}, null)));
}

/// <summary>
/// AddEventHandler
/// </summary>
protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) {
eventInfo.AddEventHandler(target, handler);
}
}
}

7 changes: 4 additions & 3 deletions OrangeBits/obj/Debug/OrangeBits.csproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,22 @@ C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\Tools\optipng.exe
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\OrangeBits.dll.config
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\OrangeBits.dll
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\OrangeBits.pdb
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\dotless.Core.dll
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\EcmaScript.NET.modified.dll
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\dotless.ClientOnly.dll
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\EcmaScript.NET.dll
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\Iesi.Collections.dll
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\IronRuby.dll
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\IronRuby.Libraries.dll
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\IronRuby.Libraries.Yaml.dll
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\Microsoft.Dynamic.dll
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\Microsoft.Scripting.dll
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\Microsoft.Scripting.Metadata.dll
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\Microsoft.WebMatrix.Extensibility.dll
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\SassAndCoffee.AspNet.dll
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\SassAndCoffee.Core.dll
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\SassAndCoffee.JavaScript.dll
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\SassAndCoffee.Ruby.dll
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\Yahoo.Yui.Compressor.dll
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\bin\Debug\Microsoft.WebMatrix.Extensibility.xml
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\obj\Debug\OrangeBits.csprojResolveAssemblyReference.cache
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\obj\Debug\UI\OptionsUI.g.cs
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\obj\Debug\GeneratedInternalTypeHelper.g.cs
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\obj\Debug\OrangeBits_MarkupCompile.cache
Expand Down
Binary file modified OrangeBits/obj/Debug/OrangeBits.dll
Binary file not shown.
Binary file modified OrangeBits/obj/Debug/OrangeBits.g.resources
Binary file not shown.
Binary file modified OrangeBits/obj/Debug/OrangeBits.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion OrangeBits/obj/Debug/OrangeBits_MarkupCompile.cache
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ DEBUG;TRACE
1-1466782252
1-651461941
22-1076801271
28983307218
28-1022403379
UI\OptionsUI.xaml;

False
Expand Down
2 changes: 1 addition & 1 deletion OrangeBits/obj/Debug/OrangeBits_MarkupCompile.i.cache
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ DEBUG;TRACE
1-1466782252
1-651461941
23-48396506
28983307218
28-1022403379
UI\OptionsUI.xaml;

False
Expand Down
2 changes: 1 addition & 1 deletion OrangeBits/obj/Debug/OrangeBits_MarkupCompile.lref
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
C:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\obj\Debug\GeneratedInternalTypeHelper.g.cs


FC:\Users\justbe\Dropbox\Code\OrangeBits\OrangeBits\UI\OptionsUI.xaml;;

Binary file modified OrangeBits/obj/Debug/UI/OptionsUI.baml
Binary file not shown.
14 changes: 6 additions & 8 deletions OrangeBits/packages.config
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="dotless" version="1.3.0.3" />
<package id="IronRuby" version="1.1.3" />
<package id="SassAndCoffee" version="2.0" />
<package id="SassAndCoffee.AspNet" version="2.0.2.0" />
<package id="SassAndCoffee.Core" version="2.0.2.0" />
<package id="SassAndCoffee.JavaScript" version="2.0.2.0" />
<package id="SassAndCoffee.Ruby" version="2.0.2.0" />
<package id="YUICompressor.NET" version="1.7.1.0" />
<package id="DotlessClientOnly" version="1.3.0.4" targetFramework="net40" />
<package id="IronRuby" version="1.1.3" targetFramework="net40" />
<package id="SassAndCoffee.Core" version="2.0.2.0" targetFramework="net40" />
<package id="SassAndCoffee.JavaScript" version="2.0.2.0" targetFramework="net40" />
<package id="SassAndCoffee.Ruby" version="2.0.2.0" targetFramework="net40" />
<package id="YUICompressor.NET" version="2.0.0.0" targetFramework="net40" />
</packages>
Binary file modified TestResults/OrangeBits.UTE.Tests.mdf
Binary file not shown.
Binary file modified TestResults/OrangeBits.UTE.Tests_log.ldf
Binary file not shown.
Binary file removed UnitTests/bin/Debug/EcmaScript.NET.modified.dll
Binary file not shown.
Binary file modified UnitTests/bin/Debug/Microsoft.WebMatrix.Extensibility.dll
Binary file not shown.
Binary file modified UnitTests/bin/Debug/OrangeBits.dll
Binary file not shown.
Binary file modified UnitTests/bin/Debug/OrangeBits.pdb
Binary file not shown.
Binary file modified UnitTests/bin/Debug/UnitTests.dll
Binary file not shown.
Binary file modified UnitTests/bin/Debug/UnitTests.pdb
Binary file not shown.
Binary file modified UnitTests/bin/Debug/Yahoo.Yui.Compressor.dll
Binary file not shown.
Binary file removed UnitTests/bin/Debug/dotless.Core.dll
Binary file not shown.
Loading

0 comments on commit dcebbbf

Please sign in to comment.