File tree Expand file tree Collapse file tree 11 files changed +57
-61
lines changed Expand file tree Collapse file tree 11 files changed +57
-61
lines changed Original file line number Diff line number Diff line change 66
66
<Compile Include =" Types\TypeFactory.cs" />
67
67
</ItemGroup >
68
68
<ItemGroup >
69
- <None Include =" libsassnet.nuspec" />
69
+ <None Include =" LibSass.Net.nuspec" />
70
+ <None Include =" libsassnet.targets" />
70
71
</ItemGroup >
71
72
<ItemGroup >
72
73
<Reference Include =" System" />
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <package xmlns =" http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd" >
3
+ <metadata >
4
+ <id >libsassnet</id >
5
+ <version >3.3.6</version >
6
+ <authors >Darren Kopp</authors >
7
+ <owners >Darren Kopp</owners >
8
+ <licenseUrl >https://github.com/darrenkopp/libsass-net/blob/master/LICENSE</licenseUrl >
9
+ <projectUrl >https://github.com/darrenkopp/libsass-net/</projectUrl >
10
+ <requireLicenseAcceptance >false</requireLicenseAcceptance >
11
+ <description >Allows you to use the LibSass compiler from .NET</description >
12
+ <copyright >Copyright © 2016 by Darren Kopp</copyright >
13
+ <tags >SASS SCSS CSS LibSass</tags >
14
+ </metadata >
15
+ <files >
16
+ <file src =" ..\bin\x64\libsass.dll" target =" build\x64\libsass.dll" />
17
+ <file src =" ..\bin\x86\libsass.dll" target =" build\x86\libsass.dll" />
18
+ <file src =" libsassnet.targets" target =" build\libsassnet.targets" />
19
+ <file src =" ..\bin\LibSass.NET.dll" target =" lib\net40\LibSass.NET.dll" />
20
+ </files >
21
+ </package >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <Project ToolsVersion =" 4.0" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3
+ <ItemGroup >
4
+ <NativeLibs Include =" $(MSBuildThisFileDirectory)**\*.dll" />
5
+ <None Include =" @(NativeLibs)" >
6
+ <Link >%(RecursiveDir)%(FileName)%(Extension)</Link >
7
+ <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
8
+ </None >
9
+ </ItemGroup >
10
+ <ItemGroup >
11
+ <NativeLibs Condition =" $(Platform) == 'AnyCPU' Or $(Platform) == 'x64'" Include =" $(MSBuildThisFileDirectory)x64\*.dll" />
12
+ <NativeLibs Condition =" $(Platform) == 'x86'" Include =" $(MSBuildThisFileDirectory)x86\*.dll" />
13
+ <None Include =" @(NativeLibs)" >
14
+ <Link >%(FileName)%(Extension)</Link >
15
+ <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
16
+ </None >
17
+ </ItemGroup >
18
+ </Project >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ LibSassNet's version will be the same as http://github.com/sass/LibSass
23
23
24
24
LibSass.Web's version is independant of LibSass and will be following [ SemVer] ( http://semver.org/ )
25
25
26
- Current version LibSassNet : 3.2.4.1
26
+ Current version LibSassNet : 3.3.6
27
27
28
- Currently implemented version of LibSass = 3.2.4
28
+ Currently implemented version of LibSass = 3.3.6
29
29
30
- Current version of LibSassNet.Web 2.1.3
30
+ Current version of LibSassNet.Web 2.2
Original file line number Diff line number Diff line change 50
50
</ItemGroup >
51
51
<ItemGroup >
52
52
<None Include =" app.config" />
53
- <None Include =" libsassnet .Web.nuspec" />
53
+ <None Include =" LibSass.NET .Web.nuspec" />
54
54
<None Include =" packages.config" />
55
55
<None Include =" web.config.transform" />
56
56
</ItemGroup >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<package >
3
3
<metadata >
4
- <id >$id$ </id >
5
- <version >2.1.3.1 </version >
4
+ <id >libsassnet.Web </id >
5
+ <version >2.2.0 </version >
6
6
<authors >Darren Kopp</authors >
7
- <owners >Darren Kopp</owners >
8
- <licenseUrl >https://github.com/darrenkopp/libsass-net/blob/master/LICENSE</licenseUrl >
9
- <projectUrl >https://github.com/darrenkopp/libsass-net/</projectUrl >
7
+ <owners >Darren Kopp</owners >
8
+ <licenseUrl >https://github.com/darrenkopp/libsass-net/blob/master/LICENSE</licenseUrl >
9
+ <projectUrl >https://github.com/darrenkopp/libsass-net/</projectUrl >
10
10
<!-- TODO: Add icon -->
11
11
<!-- <iconUrl>http://ICON_URL_HERE_OR_DELETE_THIS_LINE</iconUrl>-->
12
12
<requireLicenseAcceptance >false</requireLicenseAcceptance >
13
13
<description >Provides SCSS compilation support for System.Web.Optimization</description >
14
14
<copyright >Copyright © 2014 by Darren Kopp</copyright >
15
15
<tags >SASS SCSS CSS libsass System.Web.Optimization Microsoft.AspNet.Web.Optimization</tags >
16
16
<dependencies >
17
- <dependency id =" Microsoft.AspNet.Web.Optimization" />
18
- <dependency id =" libsassnet" version =" 3.2.5 " />
17
+ <dependency id =" Microsoft.AspNet.Web.Optimization" />
18
+ <dependency id =" libsassnet" version =" [3.3,) " />
19
19
</dependencies >
20
20
</metadata >
21
21
<files >
Original file line number Diff line number Diff line change 1
1
<configuration>
2
2
<system.webServer>
3
3
<handlers>
4
- <add name="SassHandler" verb="GET" path="*.scss" type="LibSassNet .Web.SassHandler, libsassnet .Web" />
4
+ <add name="SassHandler" verb="GET" path="*.scss" type="LibSass .Web.SassHandler, LibSass.NET .Web" />
5
5
</handlers>
6
6
</system.webServer>
7
7
</configuration>
Original file line number Diff line number Diff line change 17
17
)
18
18
)
19
19
20
- " %PathToMsBuild32% \MSBuild.exe" libsass-net.sln /nologo /v:n /m:4 /p:Configuration=Release
21
- " %PathToMsBuild64% \MSBuild.exe" libsass-net.sln /nologo /v:n /m:4 /p:Configuration=Release /p:Platform=x64
20
+ " %PathToMsBuild32% \MSBuild.exe" LibSass.NET.sln /nologo /v:n /m:4 /p:Configuration=Release
22
21
23
- .nuget\NuGet Pack " libsassnet\libsassnet.csproj" -Properties Configuration=Release
24
- .nuget\NuGet Pack " libsassnet.Web\libsassnet.Web.csproj" -Properties Configuration=Release
25
- .nuget\NuGet Pack " libsassnet\libsassnet.x64.csproj" -Properties Configuration=Release;Platform=x64
26
- .nuget\NuGet Pack " libsassnet.Web\libsassnet.Web.x64.csproj" -Properties Configuration=Release;Platform=x64
22
+ .nuget\NuGet Pack " LibSass.NET\LibSass.NET.csproj" -Properties Configuration=Release
23
+ .nuget\NuGet Pack " contrib\LibSass.NET.Web\LibSass.NET.Web.csproj" -Properties Configuration=Release
You can’t perform that action at this time.
0 commit comments