Created
August 3, 2010 18:56
-
-
Save MarkBorcherding/506915 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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 | |
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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