Skip to content

Commit

Permalink
Fixed build integration
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Nov 15, 2017
1 parent e7d5380 commit 775a0b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Thor.Generator.targets
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
<Target Name="TargetName" BeforeTargets="CoreCompile">
<Exec Command="$(ThorGen) project -s &quot;$(SourceProject)&quot; -t &quot;$(TargetProject)&quot;" Condition="'$(TemplateName)' == '' AND '$(TemplateFile)' == ''" />
<Exec Command="$(ThorGen) project -s &quot;$(SourceProject)&quot; -t &quot;$(TargetProject)&quot; --template $(TemplateName)" Condition="'$(TemplateName)' != '' AND '$(TemplateFile)' == ''" />
<Exec Command="$(ThorGen) project -s &quot;$(SourceProject)&quot; -t &quot;$(TargetProject)&quot; --template-file $(TemplateName)" Condition="'$(TemplateName)' == '' AND '$(TemplateFile)' != ''" />
<Exec Command="$(ThorGen) project -s &quot;$(SourceProject)&quot; -t &quot;$(TargetProject)&quot; --template-file &quot;$(TemplateFile)&quot;" Condition="'$(TemplateName)' == '' AND '$(TemplateFile)' != ''" />
</Target>
</Project>

0 comments on commit 775a0b9

Please sign in to comment.