-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1474932
commit 66fedfc
Showing
1 changed file
with
12 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<version>1.2.1</version> | ||
<version>1.3.0</version> | ||
<authors>Frank A. Krueger</authors> | ||
<owners>Frank A. Krueger</owners> | ||
<licenseUrl>https://raw.githubusercontent.com/praeclarum/sqlite-net/master/LICENSE.md</licenseUrl> | ||
|
@@ -12,19 +12,24 @@ | |
<summary>The official portable version of sqlite-net: the easy way to access sqlite from .NET apps.</summary> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>SQLite-net is an open source and light weight library providing easy SQLite database storage for .NET, Mono, and Xamarin applications. This version uses SQLitePCL.raw_basic to provide platform independent versions of SQLite.</description> | ||
<tags>sqlite pcl database orm </tags> | ||
<tags>sqlite pcl database orm mobile</tags> | ||
<releaseNotes> | ||
<![CDATA[ | ||
v1.2.1: Update .raw to bundle_green 1.1.0 | ||
v1.3.0: Switch to .NET Standard | ||
]]> | ||
</releaseNotes> | ||
<dependencies> | ||
<dependency id="SQLitePCLRaw.bundle_green" version="1.1.0" /> | ||
<group> | ||
<dependency id="SQLitePCLRaw.bundle_green" version="1.1.0" /> | ||
</group> | ||
<group targetFramework=".NETStandard1.1"> | ||
This comment has been minimized.
Sorry, something went wrong. |
||
<dependency id="NETStandard.Library" version="1.6.0" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="nuget/SQLite-net/bin/Release/SQLite-net.dll" target="lib/portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10" /> | ||
<file src="nuget/SQLite-net/bin/Release/SQLite-net.dll.mdb" target="lib/portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10" /> | ||
<file src="nuget/SQLite-net/bin/Release/SQLite-net.xml" target="lib/portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10" /> | ||
<file src="nuget/SQLite-net/bin/Release/SQLite-net.dll" target="lib/netstandard1.1" /> | ||
<file src="nuget/SQLite-net/bin/Release/SQLite-net.dll.mdb" target="lib/netstandard1.1" /> | ||
<file src="nuget/SQLite-net/bin/Release/SQLite-net.xml" target="lib/netstandard1.1" /> | ||
This comment has been minimized.
Sorry, something went wrong.
AArnott
|
||
</files> | ||
</package> |
By adding this group, NuGet will select that as the most appropriate one and totally ignore your other group, I think.
This seems to be confirmed by the fact that when I upgraded to 1.3.0, it no longer brought in the bundle_green dependency, but it did bring in the NETStandard.Library dependency.
Since your package only claims to support netstandard1.1, you can drop all the groups and just list the two dependencies.
Alternatively if you want to keep the groups (say, to support both older PCL style consumers as well as netstandard) then make sure you repeat the bundle_green dependency in each group.