diff --git a/appveyor.yml b/appveyor.yml
index e80bef4b65..b89fd46a50 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -55,7 +55,7 @@ test_script:
if ($PRNR) {
echo "Fetching info for PR $PRNR"
wget https://api.github.com/repos/sass/libsass/pulls/$PRNR -OutFile pr.json
- $json = Get-Content pr.json -Raw
+ $json = cat pr.json -Raw
$SPEC_PR = [regex]::match($json,'sass\/sass-spec(#|\/pull\/)([0-9]+)').Groups[2].Value
if ($SPEC_PR) {
echo "Checkout sass spec PR $SPEC_PR"
diff --git a/win/libsass.vcxproj b/win/libsass.vcxproj
index 52917039d8..2e2c324948 100644
--- a/win/libsass.vcxproj
+++ b/win/libsass.vcxproj
@@ -6,14 +6,14 @@
..\src
-
+
- %(PreprocessorDefinitions);LIBSASS_VERSION="$(LIBSASS_VERSION)"
+ %(PreprocessorDefinitions);LIBSASS_VERSION="$(LIBSASS_VERSION)";
@@ -54,6 +54,7 @@
DynamicLibrary
+ ADD_EXPORTS;$(PreprocessorDefinitions);
StaticLibrary
@@ -125,7 +126,7 @@
Level3
Disabled
- WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)
+ WIN32;_DEBUG;_CONSOLE;_LIB;$(PreprocessorDefinitions);
Console
@@ -138,7 +139,7 @@
Level3
Disabled
- WIN32;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)
+ WIN32;_DEBUG;_CONSOLE;_LIB;$(PreprocessorDefinitions);
Console
@@ -153,7 +154,7 @@
MaxSpeed
true
true
- WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)
+ WIN32;NDEBUG;_CONSOLE;_LIB;$(PreprocessorDefinitions);
Console
@@ -170,7 +171,7 @@
MaxSpeed
true
true
- WIN32;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions)
+ WIN32;NDEBUG;_CONSOLE;_LIB;$(PreprocessorDefinitions);
Console