blob: cd73784fb7961fc37a0e0eff1377f38fde675bfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<NetfxVer>2.0</NetfxVer>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<ProjectRoot Condition="'$(ProjectRoot)' == ''">$(MSBuildProjectDirectory)\..\..</ProjectRoot>
<OutputAssembly>DotNetOpenAuth</OutputAssembly>
<OutputPath>$(ProjectRoot)\bin\$(Configuration)</OutputPath>
<DocOutputPath>$(ProjectRoot)\doc</DocOutputPath>
<IntermediatePath>$(ProjectRoot)\obj\$(Configuration)</IntermediatePath>
<DocumentationFile>$(OutputPath)\$(OutputAssembly).xml</DocumentationFile>
</PropertyGroup>
<Import Project="$(ProjectRoot)\Tools\sandcastle.targets" />
</Project>
|