Skip to content

Commit

Permalink
Merge pull request #84 from nickrandolph/dev/nr/taskorderfix
Browse files Browse the repository at this point in the history
fix: Correcting task order default values
  • Loading branch information
brutaldev authored Jan 10, 2023
2 parents 4b07159 + 0233d93 commit df499e9
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 df499e9

Please sign in to comment.