-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoc.scproj
More file actions
26 lines (25 loc) · 1.23 KB
/
doc.scproj
File metadata and controls
26 lines (25 loc) · 1.23 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="createdoc">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<Name>ooapi</Name>
<TopicStyle>vs2005</TopicStyle>
<LanguageId>1033</LanguageId>
</PropertyGroup>
<ItemGroup>
<Dlls Include="$(MSBuildProjectDirectory)\bin\Debug\ooapi.net.exe" />
<Comments Include="$(MSBuildProjectDirectory)\bin\Debug\sourcedoc.xml" />
<Dependents Include="$(MSBuildProjectDirectory)\bin\Debug\*.*" />
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>bin\Release\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<OutputPath>bin\Debug\</OutputPath>
</PropertyGroup>
<Target Name="createdoc" DependsOnTargets="Chm">
<Copy SourceFiles="$(DXROOT)Examples\$(Name)\dll\dependency\$(Name).chm" DestinationFolder="$(OutputPath)" SkipUnchangedFiles="false" />
</Target>
<Import Project="$(DXROOT)\Examples\Generic\generic.targets" />
</Project>