Skip to content

Commit 18853b1

Browse files
committed
[javadoc-to-mdoc] Fix $(OutputPath) value
`javadoc2mdoc.csproj` was using the wrong `$(OutputPath)` value, because it wasn't importing `Configuration.props`, and thus `$(XAInstallPrefix)` was undefined. Consequently, instead of `javadoc-to-mdoc.exe` being built into `bin/$(Configuration)/lib/xamarin.android/xbuild/Xamarin/Android`, 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 8688832 commit 18853b1

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)