forked from x97mdr/pickles
-
Notifications
You must be signed in to change notification settings - Fork 164
/
testOutput.proj
28 lines (28 loc) · 1.04 KB
/
testOutput.proj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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="JSON">
<Name>JSON</Name>
</OutputFormat>
</ItemGroup>
<UsingTask AssemblyFile=".\deploy\nuget\packages\Pickles.MSBuild.$(Version)\tools\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)" IncludeExperimentalFeatures="$(ShouldIncludeExperimentalFeatures)" />
</Target>
</Project>