Skip to content

Commit a679f08

Browse files
committed
ExampleBrowser.Android: set debug type to portable
* warning XA0125: 'ExampleBrowser.pdb' is using a deprecated debug information level. * warning XA0125: Set the debugging information to Portable in the Visual Studio project property pages or edit the project file in a text editor and set the 'DebugType' MSBuild property to 'portable' to use the newer, cross-platform debug information level.
1 parent f3340aa commit a679f08

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Source/Examples/ExampleBrowser.Android/ExampleBrowser.Android.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</PropertyGroup>
2828
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2929
<DebugSymbols>True</DebugSymbols>
30-
<DebugType>full</DebugType>
30+
<DebugType>portable</DebugType>
3131
<Optimize>False</Optimize>
3232
<OutputPath>bin\Debug\</OutputPath>
3333
<DefineConstants>DEBUG;TRACE</DefineConstants>
@@ -37,6 +37,7 @@
3737
<AndroidSupportedAbis>arm64-v8a;x86;x86_64;armeabi-v7a</AndroidSupportedAbis>
3838
</PropertyGroup>
3939
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
40+
<DebugSymbols>true</DebugSymbols>
4041
<DebugType>pdbonly</DebugType>
4142
<Optimize>True</Optimize>
4243
<OutputPath>bin\Release\</OutputPath>

0 commit comments

Comments
 (0)