Skip to content

Commit

Permalink
Sample project to test msbuild runner
Browse files Browse the repository at this point in the history
  • Loading branch information
Dirk Rombauts committed Jul 2, 2014
1 parent 974b4ed commit ef6a9a5
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions testOutput.proj
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<OutputPath>.\Output\</OutputPath>
<FeatureDirectory>.\src\Pickles\Examples\</FeatureDirectory>
</PropertyGroup>
<ItemGroup>
<OutputFormat Include="Html">
<Name>Html</Name>
</OutputFormat>
<OutputFormat Include="Dhtml">
<Name>Dhtml</Name>
</OutputFormat>
<OutputFormat Include="Word">
<Name>Word</Name>
</OutputFormat>
<OutputFormat Include="Excel">
<Name>Excel</Name>
</OutputFormat>
<OutputFormat Include="Dita">
<Name>Dita</Name>
</OutputFormat>
</ItemGroup>
<UsingTask AssemblyFile=".\deploy\pickles-$(Version)\msbuild\PicklesDoc.Pickles.MSBuild.Tasks.dll" TaskName="Pickles" />
<Target Name="document">
<MakeDir Directories="$(OutputPath)%(OutputFormat.Name)\" />
<Pickles FeatureDirectory="$(FeatureDirectory)" OutputDirectory="$(OutputPath)%(OutputFormat.Name)\" DocumentationFormat="%(OutputFormat.Name)" />
</Target>
</Project>

0 comments on commit ef6a9a5

Please sign in to comment.