dotnet-installer/TestAssets/TestProjects/MSBuildBareBonesProject/BareBones.proj

16 lines
461 B
Text
Raw Normal View History

2016-09-22 20:56:36 +00:00
<?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!" />
2016-09-22 20:56:36 +00:00
</Target>
<Target Name="SayGoodbye">
<Message Importance="high" Text="Goodbye, from MSBuild. :'(" />
2016-09-22 20:56:36 +00:00
</Target>
<Target Name="SayThis">
<Message Importance="high" Text="You want me to say '$(This)'" />
2016-09-22 20:56:36 +00:00
</Target>
</Project>