16 lines
No EOL
407 B
XML
16 lines
No EOL
407 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<Target Name="SayHello">
|
|
<Message Text="Hello, from MSBuild!" />
|
|
</Target>
|
|
|
|
<Target Name="SayGoodbye">
|
|
<Message Text="Goodbye, from MSBuild. :'(" />
|
|
</Target>
|
|
|
|
<Target Name="SayThis">
|
|
<Message Text="You want me to say '$(This)'" />
|
|
</Target>
|
|
|
|
</Project> |