From 2dc9aaa7fd4d13fe18b1315a2575a93ca182cf5c Mon Sep 17 00:00:00 2001 From: Andrey Taritsyn Date: Mon, 30 Jan 2017 21:41:11 +0300 Subject: [PATCH] Version 1.0.0 Alpha 1 --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 872fe85..5b70856 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,18 @@ # LibSass Host for .NET -.NET wrapper around the [libSass](http://sass-lang.com/libsass) library with the ability to support a virtual file system. For correct working of the LibSass Host require assemblies `msvcp120.dll` and `msvcr120.dll` from the [Visual C++ Redistributable Packages for Visual Studio 2013](http://www.microsoft.com/en-us/download/details.aspx?id=40784). +.NET wrapper around the [libSass](http://sass-lang.com/libsass) library with the ability to support a virtual file system. ## Installation -This library can be installed through NuGet - [http://nuget.org/packages/LibSassHost](http://nuget.org/packages/LibSassHost). +This library can be installed through NuGet: + + * [LibSass Host](http://nuget.org/packages/LibSassHost/1.0.0-alpha1) + * [Windows (x86)](http://nuget.org/packages/LibSassHost.Native.win-x86/1.0.0-alpha1)* + * [Windows (x64)](http://nuget.org/packages/LibSassHost.Native.win-x64/1.0.0-alpha1)* + +* - Requires `msvcp140.dll` assembly from the [Visual C++ Redistributable for Visual Studio 2015](http://www.microsoft.com/en-us/download/details.aspx?id=48145). ## Usage -The main difference between this library from other .NET wrappers around the libSass (e.g. [libsassnet](https://github.com/darrenkopp/libsass-net/), [NSass](https://github.com/TBAPI-0KA/NSass), [Sass.Net](http://libsassnet.codeplex.com/)) is ability to support a virtual file system. When you create an instance of the SassCompiler class, you can pass an file manager through the constructor: +The main difference between this library from other .NET wrappers around the libSass (e.g. [libsassnet](https://github.com/darrenkopp/libsass-net/), [SharpScss](https://github.com/xoofx/SharpScss), [NSass](https://github.com/TBAPI-0KA/NSass), [Sass.Net](http://libsassnet.codeplex.com/)) is ability to support a virtual file system. When you create an instance of the SassCompiler class, you can pass an file manager through the constructor: ```csharp using (var compiler = new SassCompiler(new CustomFileManager()))