Skip to content

Commit

Permalink
feat (Laerdal.targets): print more properties in PrintBuildInfo for t…
Browse files Browse the repository at this point in the history
…he sake of debugging
  • Loading branch information
ksidirop-laerdal committed Nov 13, 2024
1 parent 96b2b6f commit 6b449ef
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions Laerdal.Dfu/Laerdal.targets
Original file line number Diff line number Diff line change
Expand Up @@ -76,16 +76,23 @@

<!-- ==================== LOGGING ==================== -->
<Target Name="PrintBuildInfo" BeforeTargets="BeforeBuild">
<Message Importance="High" Text="*** Package Info ***" />
<Message Importance="High" Text="PackageId: $(PackageId)" />
<Message Importance="High" Text="Configuration: $(Configuration)" />
<Message Importance="High" Text="TargetFramework: $(TargetFramework)" />
<Message Importance="High" Text="DefineConstants: $(DefineConstants)" />
<Message Importance="High" Text="Platform: $(Platform)" />
<Message Importance="High" Text="PackageVersion: $(PackageVersion)" />
<Message Importance="High" Text="AssemblyVersion: $(AssemblyVersion)" />
<Message Importance="High" Text="AssemblyFileVersion: $(AssemblyFileVersion)"/>
<Message Importance="High" Text="Version: $(Version)" />
<Message Importance="High" Text="*** Package Info ***"/>
<Message Importance="High" Text="Version : $(Version) "/>
<Message Importance="High" Text="Platform : $(Platform) "/>
<Message Importance="High" Text="PackageId : $(PackageId) "/>
<Message Importance="High" Text="Configuration : $(Configuration) "/>
<Message Importance="High" Text="PackageVersion : $(PackageVersion) "/>
<Message Importance="High" Text="TargetFramework : $(TargetFramework) "/>
<Message Importance="High" Text="DefineConstants : $(DefineConstants) "/>
<Message Importance="High" Text="AssemblyVersion : $(AssemblyVersion) "/>
<Message Importance="High" Text="AssemblyFileVersion : $(AssemblyFileVersion) "/>
<Message Importance="High" Text=" "/>
<Message Importance="high" Text="IsForIOS : $(IsForIOS) "/>
<Message Importance="high" Text="IsForAndroid : $(IsForAndroid) "/>
<Message Importance="high" Text="IsForWindows : $(IsForWindows) "/>
<Message Importance="high" Text="IsForPlainNetX : $(IsForPlainNetX) "/>
<Message Importance="high" Text="IsForAppleStuff : $(IsForAppleStuff) "/>
<Message Importance="high" Text="IsForMacCatalyst : $(IsForMacCatalyst) "/>
</Target>

<!-- ==================== MAUI for .NET8 changes ==================== -->
Expand Down

0 comments on commit 6b449ef

Please sign in to comment.