将 SASS 移植到 .NET 会很好,因为它是一个很好的工具,而 .NET 是一个很好的平台。但实际上并不需要,因为我们可以继续按原样使用 Ruby 工具。您可以非常轻松地在构建过程中添加一个步骤,该步骤使用 Ruby 工具将 SASS 文件编译为 CSS 文件。
这是我的。
#PostBuild.rb
#from http://sentia.com.au/2008/08/sassing-a-net-application.html
#Post-build event command line: rake -f "$(ProjectDir)PostBuild.rb"
require 'haml'
require 'sass'
task :default => [ :stylesheets ]
desc 'Regenerates all sass templates.'
task :stylesheets do
wd = File.dirname(__FILE__)
sass_root = File.join(wd, 'Stylesheets')
css_root = File.join(wd, 'Content')
Dir[sass_root + '/*.sass'].each do |sass|
css = File.join(css_root, File.basename(sass, '.sass') + '.css')
puts "Sassing #{sass} to #{css}."
File.open(css, 'w') do |f|
f.write(Sass::Engine.new(IO.read(sass)).render)
end
end
end