Skip to content

Instantly share code, notes, and snippets.

@MarkBorcherding
Created August 3, 2010 18:56
Show Gist options
  • Save MarkBorcherding/506915 to your computer and use it in GitHub Desktop.
Save MarkBorcherding/506915 to your computer and use it in GitHub Desktop.
<Project DefaultTargets="Default" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Foo Condition="$(Foo)==''">bar</Foo>
</PropertyGroup>
<Target Name="Default">
<Message Text="$(Foo)" />
</Target>
</Project>
<!--
invoke with
msbuild msbuild.xml /p:Foo=baz
-->
foo=ENV['foo'] || 'bar'
task :default do
puts "foo is #{foo}"
end
#invoke with
# rake foo=baz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment