dotnet-installer/TestAssets/TestProjects/MSBuildBareBonesProject/BareBones.proj
Krzysztof Wicher 7a3bc96f75 Fix 4508: CLI verbs that call into msbuild should control their output (#4719)
* Fix 4508: CLI verbs that call into msbuild should control their output

* fix failing tests + tiny bufix in dotnet test
2016-11-15 11:56:39 -08:00

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>