Skip to content

Commit

Permalink
fix (Laerdal.Builder.targets): fix erroneous guard-checks
Browse files Browse the repository at this point in the history
  • Loading branch information
ksidirop-laerdal committed Apr 11, 2024
1 parent 6aafc23 commit 2e8cc28
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Laerdal.Scripts/Laerdal.Builder.targets
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,10 @@
<!-- BUILD -->
<Target Name="BuildProjects">
<!-- REQUIRED PARAMETERS -->
<Error Condition=" '$(Laerdal_Project)' == '' " Text="'Laerdal_Project' has to be set. Please call this script again with the argument '/p:Laerdal_Project=...'" />

<Error Condition=" '$(Configuration)' == '' " Text="'Configuration' has to be set. Please call this script again with the argument '/p:Configuration=...'" />
<Error Condition=" '$(PackageOutputPath)' == '' " Text="'PackageOutputPath' has to be set. Please call this script again with the argument '/p:PackageOutputPath=...'" />
<Error Condition=" '$(Laerdal_Version_Base)' == '' " Text="'Laerdal_Version_Base' has to be set. Please call this script again with the argument '/p:Laerdal_Version_Base=...'" />

<!-- PARAMETERS -->
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
Expand Down

0 comments on commit 2e8cc28

Please sign in to comment.