CSS Minify with # for first character
description
i have an issue with Ajax Minifyer 4.21 and the previous version.
I have in my aspx page, this entry :
<div id="header" ...>
in my css file, i have this :
header{ color:White;...}
when i want to minify the file with this value in my csproj's file :
<UsingTask TaskName="JSBuild.CSSBuildTask" AssemblyFile="$(MSBuildProjectDirectory)....\SharedBinaries\JSBuild\JSBuild.dll" />
<CSSBuildTask SourceFiles="@(PreCSS)" SourceDirectory="$(MSBuildProjectDirectory)" DestinationDirectory="ScriptOutput" />
I have this error :
unknown directive HEADER, on the line which start with <CSSBuildTask .
It works for my js file.
If i change #header to .header, the minifyer works.