Skip to content

Commit 60bb116

Browse files
committed
In BundleTransformer.SassAndScss added support of LibSass version 3.5.4
1 parent 59c41bf commit 60bb116

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

NuGet/BundleTransformer.SassAndScss/BundleTransformer.SassAndScss.nuspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010
<projectUrl>https://github.com/Taritsyn/BundleTransformer</projectUrl>
1111
<iconUrl>https://raw.githubusercontent.com/Taritsyn/BundleTransformer/master/images/icons/128/BundleTransformer_SassAndScss_Logo_128x128.png</iconUrl>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13-
<description>BundleTransformer.SassAndScss contains one translator-adapter - `SassAndScssTranslator`. This adapter makes translation of Sass and SCSS code to CSS code by using the LibSass Host for .NET (https://github.com/Taritsyn/LibSassHost) version 1.1.8 (supports the LibSass (http://sass-lang.com/libsass) version 3.5.2). Also contains the `SassAndScssAssetHandler` debugging HTTP handler, which is responsible for text output of translated Sass or SCSS asset.
13+
<description>BundleTransformer.SassAndScss contains one translator-adapter - `SassAndScssTranslator`. This adapter makes translation of Sass and SCSS code to CSS code by using the LibSass Host for .NET (https://github.com/Taritsyn/LibSassHost) version 1.1.9 (supports the LibSass (http://sass-lang.com/libsass) version 3.5.4). Also contains the `SassAndScssAssetHandler` debugging HTTP handler, which is responsible for text output of translated Sass or SCSS asset.
1414

1515
This package does not contain the native implementations of LibSass for Windows. Therefore, you need to choose and install the most appropriate package(s) for your platform. The following packages are available:
1616

1717
* LibSassHost.Native.win-x86
1818
* LibSassHost.Native.win-x64
1919

2020
For correct working of the LibSass Host under Windows requires the Microsoft Visual C++ 2015 Redistributable.</description>
21-
<summary>BundleTransformer.SassAndScss contains one translator-adapter - `SassAndScssTranslator`. This adapter makes translation of Sass and SCSS code to CSS code by using the LibSass Host for .NET version 1.1.8 (supports the LibSass version 3.5.2). Also contains the `SassAndScssAssetHandler` debugging HTTP handler, which is responsible for text output of translated Sass or SCSS asset.</summary>
22-
<releaseNotes>Added support of LibSass version 3.5.2.</releaseNotes>
21+
<summary>BundleTransformer.SassAndScss contains one translator-adapter - `SassAndScssTranslator`. This adapter makes translation of Sass and SCSS code to CSS code by using the LibSass Host for .NET version 1.1.9 (supports the LibSass version 3.5.4). Also contains the `SassAndScssAssetHandler` debugging HTTP handler, which is responsible for text output of translated Sass or SCSS asset.</summary>
22+
<releaseNotes>Added support of LibSass version 3.5.4.</releaseNotes>
2323
<copyright>Copyright (c) 2012-2018 Andrey Taritsyn - http://www.taritsyn.ru</copyright>
2424
<language>en-US</language>
2525
<tags>BundleTransformer System.Web.Optimization IBundleTransform ASP.NET CSS Bundling Sass SCSS Translation Translator Compilation Compiler</tags>

NuGet/BundleTransformer.SassAndScss/readme.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
BundleTransformer.SassAndScss contains one translator-adapter -
1515
`SassAndScssTranslator`. This adapter makes translation of Sass and SCSS code to
1616
CSS code by using the LibSass Host for .NET
17-
(https://github.com/Taritsyn/LibSassHost) version 1.1.8 (supports the LibSass
18-
(http://sass-lang.com/libsass) version 3.5.2). Also contains the
17+
(https://github.com/Taritsyn/LibSassHost) version 1.1.9 (supports the LibSass
18+
(http://sass-lang.com/libsass) version 3.5.4). Also contains the
1919
`SassAndScssAssetHandler` debugging HTTP handler, which is responsible for text
2020
output of translated Sass or SCSS asset.
2121

@@ -32,7 +32,7 @@
3232
=============
3333
RELEASE NOTES
3434
=============
35-
Added support of LibSass version 3.5.2.
35+
Added support of LibSass version 3.5.4.
3636

3737
====================
3838
POST-INSTALL ACTIONS

samples/BundleTransformer.Sample.AspNet4.Mvc4/BundleTransformer.Sample.AspNet4.Mvc4.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\..\packages\LibSassHost.Native.win-x86.1.1.8\build\LibSassHost.Native.win-x86.props" Condition="Exists('..\..\packages\LibSassHost.Native.win-x86.1.1.8\build\LibSassHost.Native.win-x86.props')" />
4-
<Import Project="..\..\packages\LibSassHost.Native.win-x64.1.1.8\build\LibSassHost.Native.win-x64.props" Condition="Exists('..\..\packages\LibSassHost.Native.win-x64.1.1.8\build\LibSassHost.Native.win-x64.props')" />
3+
<Import Project="..\..\packages\LibSassHost.Native.win-x86.1.1.9\build\LibSassHost.Native.win-x86.props" Condition="Exists('..\..\packages\LibSassHost.Native.win-x86.1.1.9\build\LibSassHost.Native.win-x86.props')" />
4+
<Import Project="..\..\packages\LibSassHost.Native.win-x64.1.1.9\build\LibSassHost.Native.win-x64.props" Condition="Exists('..\..\packages\LibSassHost.Native.win-x64.1.1.9\build\LibSassHost.Native.win-x64.props')" />
55
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
66
<PropertyGroup>
77
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -21,7 +21,7 @@
2121
<IISExpressUseClassicPipelineMode />
2222
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
2323
<RestorePackages>true</RestorePackages>
24-
<NuGetPackageImportStamp>0ba52c7d</NuGetPackageImportStamp>
24+
<NuGetPackageImportStamp>39a552f8</NuGetPackageImportStamp>
2525
</PropertyGroup>
2626
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2727
<DebugSymbols>true</DebugSymbols>
@@ -473,7 +473,7 @@
473473
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
474474
</PropertyGroup>
475475
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
476-
<Error Condition="!Exists('..\..\packages\LibSassHost.Native.win-x64.1.1.8\build\LibSassHost.Native.win-x64.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\LibSassHost.Native.win-x64.1.1.8\build\LibSassHost.Native.win-x64.props'))" />
477-
<Error Condition="!Exists('..\..\packages\LibSassHost.Native.win-x86.1.1.8\build\LibSassHost.Native.win-x86.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\LibSassHost.Native.win-x86.1.1.8\build\LibSassHost.Native.win-x86.props'))" />
476+
<Error Condition="!Exists('..\..\packages\LibSassHost.Native.win-x64.1.1.9\build\LibSassHost.Native.win-x64.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\LibSassHost.Native.win-x64.1.1.9\build\LibSassHost.Native.win-x64.props'))" />
477+
<Error Condition="!Exists('..\..\packages\LibSassHost.Native.win-x86.1.1.9\build\LibSassHost.Native.win-x86.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\LibSassHost.Native.win-x86.1.1.9\build\LibSassHost.Native.win-x86.props'))" />
478478
</Target>
479479
</Project>

samples/BundleTransformer.Sample.AspNet4.Mvc4/packages.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<package id="jQuery.UI.Combined" version="1.11.4" targetFramework="net40" />
88
<package id="jQuery.Validation" version="1.14.0" targetFramework="net40" />
99
<package id="knockoutjs" version="3.4.0" targetFramework="net40" />
10-
<package id="LibSassHost.Native.win-x64" version="1.1.8" targetFramework="net40" />
11-
<package id="LibSassHost.Native.win-x86" version="1.1.8" targetFramework="net40" />
10+
<package id="LibSassHost.Native.win-x64" version="1.1.9" targetFramework="net40" />
11+
<package id="LibSassHost.Native.win-x86" version="1.1.9" targetFramework="net40" />
1212
<package id="Microsoft.AspNet.Mvc" version="4.0.40804.0" targetFramework="net40" />
1313
<package id="Microsoft.AspNet.Razor" version="2.0.30506.0" targetFramework="net40" />
1414
<package id="Microsoft.AspNet.Web.Optimization" version="1.1.3" targetFramework="net40" />

src/BundleTransformer.SassAndScss/BundleTransformer.SassAndScss.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
<AssemblyOriginatorKeyFile>..\..\tools\Key.snk</AssemblyOriginatorKeyFile>
4040
</PropertyGroup>
4141
<ItemGroup>
42-
<Reference Include="LibSassHost, Version=1.1.8.0, Culture=neutral, PublicKeyToken=3e24e88796a38e46, processorArchitecture=MSIL">
43-
<HintPath>..\..\packages\LibSassHost.1.1.8\lib\net40-client\LibSassHost.dll</HintPath>
42+
<Reference Include="LibSassHost, Version=1.1.9.0, Culture=neutral, PublicKeyToken=3e24e88796a38e46, processorArchitecture=MSIL">
43+
<HintPath>..\..\packages\LibSassHost.1.1.9\lib\net40-client\LibSassHost.dll</HintPath>
4444
<Private>True</Private>
4545
</Reference>
4646
<Reference Include="System" />
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="LibSassHost" version="1.1.8" targetFramework="net40" />
3+
<package id="LibSassHost" version="1.1.9" targetFramework="net40" />
44
</packages>

0 commit comments

Comments
 (0)