Changed yet again: TaskAction (too repetitive) changed to simply Action

This commit is contained in:
Michael Becker 2014-12-04 21:02:34 -08:00
parent 6cea2e06b1
commit b30066e595
4 changed files with 21 additions and 21 deletions

View File

@ -8,9 +8,9 @@
</Information>
<Tasks>
<Task Title="Build">
<TaskActions>
<TaskAction TypeID="{EE505E05-F125-4718-BA0A-879C72B5125A}">
<!-- ExecutableTaskAction -->
<Actions>
<Action TypeID="{EE505E05-F125-4718-BA0A-879C72B5125A}">
<!-- ExecutableAction -->
<FileName>$(MinGWPath)\g++.exe</FileName>
<Arguments>
<StringBuilder>
@ -54,8 +54,8 @@
<VariableArray Name="ProjectFiles" Separator=" " />
</StringBuilder>
</Arguments>
</TaskAction>
</TaskActions>
</Action>
</Actions>
</Task>
</Tasks>
</ProjectType>

View File

@ -8,16 +8,16 @@
</Information>
<Tasks>
<Task Title="Transform">
<TaskActions>
<TaskAction TypeID="{EE505E05-F125-4718-BA0A-879C72B5125A}">
<Actions>
<Action TypeID="{EE505E05-F125-4718-BA0A-879C72B5125A}">
<FileName>C:\Program Files\Saxonica\bin\saxon.exe</FileName>
<Arguments>
<StringBuilder>
<ProjectFiles Separator=" " />
</StringBuilder>
</Arguments>
</TaskAction>
</TaskActions>
</Action>
</Actions>
</Task>
</Tasks>
</ProjectType>

View File

@ -8,15 +8,15 @@
</Information>
<Tasks>
<!--
TaskActionTypes are defined in libraries.
{EE505E05-F125-4718-BA0A-879C72B5125A} corresponds to the built-in task action type ExecutableTaskAction
When Tasks are executed, each TaskAction in TaskActions gets executed.
When TaskActions are executed, the TaskType gets the inner XML of the task and processes it to extract parameters.
ActionTypes are defined in libraries.
{EE505E05-F125-4718-BA0A-879C72B5125A} corresponds to the built-in task action type ExecutableAction
When Tasks are executed, each Action in Actions gets executed.
When Actions are executed, the TaskType gets the inner XML of the task and processes it to extract parameters.
Certain tags are expanded by the preprocessor, like StringBuilder which is common to all TaskTypes.
-->
<Task Title="Build">
<TaskActions>
<TaskAction TypeID="{EE505E05-F125-4718-BA0A-879C72B5125A}">
<Actions>
<Action TypeID="{EE505E05-F125-4718-BA0A-879C72B5125A}">
<FileName>$(ArduinoPath)\avr-gcc.exe</FileName>
<Arguments>
<StringBuilder>
@ -28,8 +28,8 @@
<ProjectFiles Separator=" " />
</StringBuilder>
</Arguments>
</TaskAction>
</TaskActions>
</Action>
</Actions>
</Task>
</Tasks>
</ProjectType>

View File

@ -8,8 +8,8 @@
</Information>
<Tasks>
<Task Title="Build">
<TaskActions>
<TaskAction TypeID="{EE505E05-F125-4718-BA0A-879C72B5125A}" >
<Actions>
<Action TypeID="{EE505E05-F125-4718-BA0A-879C72B5125A}" >
<FileName>$(DotNetFrameworkPath)\v$(DotNetVersion)\csc.exe</FileName>
<Arguments>
<StringBuilder>
@ -21,8 +21,8 @@
<ProjectFiles Separator=" " />
</StringBuilder>
</Arguments>
</TaskAction>
</TaskActions>
</Action>
</Actions>
</Task>
</Tasks>
</ProjectType>