Skip to content

Commit

Permalink
fix: Correcting task order default values
Browse files Browse the repository at this point in the history
  • Loading branch information
nickrandolph committed Jan 10, 2023
1 parent 4b07159 commit 0233d93
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Brutal.Dev.StrongNameSigner/StrongNameSigner.targets
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
<!-- Declare a variable that contains the path to the StrongNameSigner directory for pre and post build steps with the following syntax: $(StrongNameSignerDirectory) -->
<StrongNameSignerDirectory>$(MSBuildThisFileDirectory)</StrongNameSignerDirectory>
<EnableStrongNameSigner Condition="'$(EnableStrongNameSigner)' == ''">true</EnableStrongNameSigner>
<!-- Signing should be done sometime after references are resolved - define StrongNameSignerAfterTargets to add other tasks that
<!-- Signing should be done sometime after references are resolved - define StrongNameSignerAfterTargets to define other tasks that
signing should run after -->
<StrongNameSignerAfterTargets>$(StrongNameSignerAfterTargets);AfterResolveReferences</StrongNameSignerAfterTargets>
<!-- Signing should be done sometime before compile - define StrongNameSignerAfterTargets to add other tasks that signing
<StrongNameSignerAfterTargets Condition="'$(StrongNameSignerAfterTargets)' == ''">AfterResolveReferences</StrongNameSignerAfterTargets>
<!-- Signing should be done sometime before compile - define StrongNameSignerAfterTargets to define other tasks that signing
should be done before-->
<StrongNameSignerBeforeTargets>$(StrongNameSignerBeforeTargets);BeforeCompile</StrongNameSignerBeforeTargets>
<StrongNameSignerBeforeTargets Condition="'$(StrongNameSignerBeforeTargets)' == ''">BeforeCompile</StrongNameSignerBeforeTargets>
</PropertyGroup>
</Project>

0 comments on commit 0233d93

Please sign in to comment.