Skip to content

Commit 6637478

Browse files
saperam11
authored andcommitted
Get rid of temporary files
1 parent b7835ab commit 6637478

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

win/libsass.vcxproj

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,12 @@
55
<LIBSASS_VERSION>[NA]</LIBSASS_VERSION>
66
</PropertyGroup>
77
<Target Name="GitVersion">
8-
<Exec Command="git -C .. describe --abbrev=4 --dirty --always --tags &gt; libsass-version" />
9-
<Exec Command="git -C ../sassc describe --abbrev=4 --dirty --always --tags &gt; sassc-version" />
10-
<ReadLinesFromFile File="sassc-version">
11-
<Output TaskParameter="Lines" PropertyName="SASSC_VERSION" />
12-
</ReadLinesFromFile>
13-
<ReadLinesFromFile File="libsass-version">
14-
<Output TaskParameter="Lines" PropertyName="LIBSASS_VERSION" />
15-
</ReadLinesFromFile>
8+
<Exec Command="git -C .. describe --abbrev=4 --dirty --always --tags" ConsoleToMSBuild="true">
9+
<Output TaskParameter="ConsoleOutput" PropertyName="LIBSASS_VERSION" />
10+
</Exec>
11+
<Exec Command="git -C ../sassc describe --abbrev=4 --dirty --always --tags" ConsoleToMSBuild="true">
12+
<Output TaskParameter="ConsoleOutput" PropertyName="SASSC_VERSION" />
13+
</Exec>
1614
</Target>
1715
<Target Name="VersionMacros">
1816
<ItemGroup>

0 commit comments

Comments
 (0)