Skip to content

Commit d9fae5b

Browse files
committed
Remove debug info from nuget release builds
VS2015 can't handle the portable PDB format used by mono. Fixes #614
1 parent 33a5b68 commit d9fae5b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

nuget/SQLite-net-base/SQLite-net-base.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<DocumentationFile>bin\Debug\netstandard1.1\SQLite-net.xml</DocumentationFile>
1616
</PropertyGroup>
1717
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
18-
<DebugSymbols>true</DebugSymbols>
19-
<DebugType>portable</DebugType>
18+
<DebugSymbols>false</DebugSymbols>
19+
<DebugType></DebugType>
2020
<DefineConstants>USE_SQLITEPCL_RAW;NO_SQLITEPCL_RAW_BATTERIES;RELEASE;NETSTANDARD1_1</DefineConstants>
2121
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
2222
<DocumentationFile>bin\Release\netstandard1.1\SQLite-net.xml</DocumentationFile>

nuget/SQLite-net-sqlcipher/SQLite-net-sqlcipher.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
</PropertyGroup>
1111

1212
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
13-
<DebugSymbols>true</DebugSymbols>
14-
<DebugType>portable</DebugType>
13+
<DebugSymbols>false</DebugSymbols>
14+
<DebugType></DebugType>
1515
<DefineConstants>USE_SQLITEPCL_RAW;RELEASE;NETSTANDARD1_1</DefineConstants>
1616
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1717
<DocumentationFile>bin\Release\netstandard1.1\SQLite-net.xml</DocumentationFile>

nuget/SQLite-net-std/SQLite-net-std.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
</PropertyGroup>
1111

1212
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
13-
<DebugSymbols>true</DebugSymbols>
14-
<DebugType>portable</DebugType>
13+
<DebugSymbols>false</DebugSymbols>
14+
<DebugType></DebugType>
1515
<DefineConstants>USE_SQLITEPCL_RAW;RELEASE;NETSTANDARD1_1</DefineConstants>
1616
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1717
<DocumentationFile>bin\Release\netstandard1.1\SQLite-net.xml</DocumentationFile>

nuget/SQLite-net/SQLite-net.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
<DocumentationFile>bin\Debug\SQLite-net.xml</DocumentationFile>
3131
</PropertyGroup>
3232
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
33-
<DebugSymbols>true</DebugSymbols>
34-
<DebugType>portable</DebugType>
33+
<DebugSymbols>false</DebugSymbols>
34+
<DebugType></DebugType>
3535
<Optimize>true</Optimize>
3636
<OutputPath>bin\Release\</OutputPath>
3737
<DefineConstants>RELEASE;USE_SQLITEPCL_RAW</DefineConstants>

0 commit comments

Comments
 (0)