Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
titleÖrnek 12
linenumberstrue
<SetVariable Name="$(personName)">
   <Value>John Doe</Value>
</SetVariable>
<If>
   <Then>
      <Condition>
         <Equals>
            <Value>$(personName)</Value>
            <Value>John Doe</Value>
         </Equals>
      </Condition>
      <Perform>
         <SetVariable Name="$(Result)">
            <Value>True</Value>
         </SetVariable>
      </Perform>
   </Then>
</If>

...

Code Block
languagexml
titleÖrnek 23
linenumberstrue
<SetVariable Name="$(personName)">
   <Value>Doe John</Value>
</SetVariable>
<SetVariable Name="$(city)">
   <Value>Istanbul</Value>
</SetVariable>
<If>
   <Then>
      <Condition>
         <Or>
            <Equals>
               <Value>$(personName)</Value>
               <Value>John Doe</Value>
            </Equals>
            <Equals>
               <Value>$(city)</Value>
               <Value>Istanbul</Value>
            </Equals>
         </Or>
      </Condition>
      <Perform>
         <SetVariable Name="$(Result)">
            <Value>True</Value>
         </SetVariable>
      </Perform>
   </Then>
</If>

...