Skip to content

Commit 92e6cc4

Browse files
committed
Fix QuickLook.Common snupkg publishing failed
Symbols package publishing failed. The associated symbols package could not be published due to the following reason(s): The uploaded symbols package contains one or more pdbs that are not portable. Once you've fixed the issue with your symbols package, you can re-upload it.
1 parent 6fb3bf0 commit 92e6cc4

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

QuickLook.Common/QuickLook.Common.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
2828
<DebugSymbols>true</DebugSymbols>
29-
<DebugType>full</DebugType>
29+
<DebugType>portable</DebugType>
3030
<Optimize>false</Optimize>
3131
<OutputPath>..\Build\Debug\</OutputPath>
3232
<DefineConstants>DEBUG;TRACE</DefineConstants>
@@ -35,23 +35,23 @@
3535

3636
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
3737
<DebugSymbols>true</DebugSymbols>
38-
<DebugType>full</DebugType>
38+
<DebugType>portable</DebugType>
3939
<Optimize>false</Optimize>
4040
<OutputPath>..\Build\Debug\</OutputPath>
4141
<DefineConstants>DEBUG;TRACE</DefineConstants>
4242
<WarningLevel>4</WarningLevel>
4343
</PropertyGroup>
4444

4545
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
46-
<DebugType>pdbonly</DebugType>
46+
<DebugType>portable</DebugType>
4747
<Optimize>true</Optimize>
4848
<OutputPath>..\Build\Release\</OutputPath>
4949
<DefineConstants>TRACE</DefineConstants>
5050
<WarningLevel>4</WarningLevel>
5151
</PropertyGroup>
5252

5353
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
54-
<DebugType>pdbonly</DebugType>
54+
<DebugType>portable</DebugType>
5555
<Optimize>true</Optimize>
5656
<OutputPath>..\Build\Release\</OutputPath>
5757
<DefineConstants>TRACE</DefineConstants>

0 commit comments

Comments
 (0)