6 lines
270 B
XML
6 lines
270 B
XML
<Project>
|
|
<!-- See https://aka.ms/dotnet/msbuild/customize for more details on customizing your build -->
|
|
<Target Name="CustomAfterBuildTarget" AfterTargets="Build">
|
|
<Message Text="Hello from CustomAfterBuildTarget" Importance="high" />
|
|
</Target>
|
|
</Project>
|