Skip to content

Commit 6189f97

Browse files
authored
[javadoc-to-mdoc] Fix $(OutputPath) value (#712)
Commit 97f08f7 "broke" the `javadoc2mdoc.csproj` build by causing it to use was using the wrong `$(OutputPath)` value, as `Configuration.props` wasn't `<Import/>`ed, and thus `$(XAInstallPrefix)` was undefined. Consequently, instead of `javadoc-to-mdoc.exe` being built into `bin/$(Configuration)/lib/xamarin.android/xbuild/Xamarin/Android`, as was desired, it was instead built into `tools/javadoc2mdoc/xbuild/Xamarin/Android`. Add the appropriate `<Import/>` so `javadoc-to-mdoc.exe` is placed into the correct directory.
1 parent 5089c42 commit 6189f97

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tools/javadoc2mdoc/javadoc2mdoc.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<AssemblyName>javadoc-to-mdoc</AssemblyName>
1010
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
1111
</PropertyGroup>
12+
<Import Project="..\..\Configuration.props" />
1213
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1314
<DebugSymbols>true</DebugSymbols>
1415
<DebugType>full</DebugType>

0 commit comments

Comments
 (0)