Merge pull request #4229 from eerhardt/NewCommands

Create a `dotnet msbuild` command and fill out the applicable command line arguments to `dotnet build3`.
This commit is contained in:
Eric Erhardt 2016-09-23 09:05:01 -05:00 committed by GitHub
commit 5cfe3e9ff5
13 changed files with 249 additions and 16 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>