20 строки
1003 B
XML
20 строки
1003 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See LICENSE in the project root for license information. -->
|
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<!-- <PostBuildDependsOn>$(PostBuildDependsOn);VerboseOutputLayoutInfo</PostBuildDependsOn> -->
|
|
</PropertyGroup>
|
|
|
|
<!-- Display the entire build output directory structure. -->
|
|
<Target Name="VerboseOutputLayoutInfo">
|
|
<ItemGroup>
|
|
<FilesInOutput Include="$(BaseOutputPath)\**\*" />
|
|
</ItemGroup>
|
|
<Message Importance="High" Text="BuildOutput: @(FilesInOutput->'%(fullpath)')" Condition="'%(Identity)' != ''" />
|
|
</Target>
|
|
|
|
<!-- Global project level post build event target. This runs after every project in the solution. It's currently set to just
|
|
chain targets together. -->
|
|
<Target Name="PostBuildEvent" DependsOnTargets="$(PostBuildDependsOn)" />
|
|
</Project>
|