7a3bc96f75
* Fix 4508: CLI verbs that call into msbuild should control their output * fix failing tests + tiny bufix in dotnet test
16 lines
No EOL
461 B
XML
16 lines
No EOL
461 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 Importance="high" Text="Hello, from MSBuild!" />
|
|
</Target>
|
|
|
|
<Target Name="SayGoodbye">
|
|
<Message Importance="high" Text="Goodbye, from MSBuild. :'(" />
|
|
</Target>
|
|
|
|
<Target Name="SayThis">
|
|
<Message Importance="high" Text="You want me to say '$(This)'" />
|
|
</Target>
|
|
|
|
</Project> |