Add dotnet msbuild tests.

This commit is contained in:
Eric Erhardt 2016-09-22 15:56:36 -05:00
parent d6adea1af0
commit 5bd310bbd5
6 changed files with 152 additions and 0 deletions

View file

@ -0,0 +1,16 @@
<?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>