We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 785ceb9 commit 5f2aa13Copy full SHA for 5f2aa13
build/sign.proj
@@ -46,11 +46,14 @@
46
ToolsPath="$(SigningToolsPath)" />
47
</Target>
48
49
- <Target Name="All">
+ <Target Name="BeforeAll" BeforeTargets="All">
50
<PropertyGroup>
51
<DisableSigning>true</DisableSigning>
52
</PropertyGroup>
53
- <CallTarget Targets="net452;netstandard20"/>
+ </Target>
54
+
55
+ <Target Name="All" DependsOnTargets="net452;netstandard20">
56
+ <Message Importance="high" Text="Sign: All started" />
57
58
<DisableSigning>false</DisableSigning>
59
0 commit comments