Skip to content

Commit a92d720

Browse files
committed
EF and WKB targets net 45
1 parent ac568a3 commit a92d720

5 files changed

Lines changed: 41 additions & 38 deletions

File tree

src/GeoJSON.Net.Contrib.EntityFramework.nuspec

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,27 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>GeoJSON.Net.Contrib.EntityFramework</id>
5-
<version>0.1.0</version>
5+
<version>0.1.2</version>
66
<authors>Alvaro Montero Gonzalez</authors>
77
<owners>Xavier Fischer</owners>
88
<licenseUrl>https://github.com/GeoJSON-Net/GeoJSON.Net.Contrib/blob/master/LICENSE</licenseUrl>
99
<projectUrl>https://github.com/GeoJSON-Net/GeoJSON.Net.Contrib/blob/master/README.md</projectUrl>
1010
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1111
<description>Provides GeoJSON.Net Converters from / to the EntityFramework Spatial types.</description>
1212
<summary>This package contains custom JSON converters to be used with the base GeoJSON.Net library to bridge from and to the EntityFramework Spatial types.</summary>
13-
<releaseNotes>first release</releaseNotes>
13+
<releaseNotes>Targets net 45</releaseNotes>
1414
<copyright>Joerg Battermann and Contributors (!)</copyright>
1515
<language>en-US</language>
1616
<tags>GeoJSON JSON List EntityFramework Spatial Converters Conversion</tags>
1717
<dependencies>
1818
<dependency id="GeoJSON.Net" version="1.1.64" />
1919
<dependency id="EntityFramework" version="6.1.3" />
20-
<dependency id="GeoJSON.Net.Contrib.Wkb" version="0.1.1" />
20+
<dependency id="GeoJSON.Net.Contrib.Wkb" version="0.1.2" />
2121
</dependencies>
2222
</metadata>
2323
<files>
24-
<file src="GeoJSON.Net.Contrib.EntityFramework\bin\Release\GeoJSON.Net.Contrib.EntityFramework.dll" target="lib\net452\GeoJSON.Net.Contrib.EntityFramework.dll" />
25-
<file src="GeoJSON.Net.Contrib.EntityFramework\bin\Release\GeoJSON.Net.Contrib.EntityFramework.pdb" target="lib\net452\GeoJSON.Net.Contrib.EntityFramework.pdb" />
26-
<file src="GeoJSON.Net.Contrib.EntityFramework\bin\Release\GeoJSON.Net.Contrib.EntityFramework.XML" target="lib\net452\GeoJSON.Net.Contrib.EntityFramework.XML" />
24+
<file src="GeoJSON.Net.Contrib.EntityFramework\bin\Release\GeoJSON.Net.Contrib.EntityFramework.dll" target="lib\net45\GeoJSON.Net.Contrib.EntityFramework.dll" />
25+
<file src="GeoJSON.Net.Contrib.EntityFramework\bin\Release\GeoJSON.Net.Contrib.EntityFramework.pdb" target="lib\net45\GeoJSON.Net.Contrib.EntityFramework.pdb" />
26+
<file src="GeoJSON.Net.Contrib.EntityFramework\bin\Release\GeoJSON.Net.Contrib.EntityFramework.XML" target="lib\net45\GeoJSON.Net.Contrib.EntityFramework.XML" />
2727
</files>
2828
</package>
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<configSections>
44
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
5-
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
5+
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
66
</configSections>
77
<entityFramework>
88
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
99
<parameters>
10-
<parameter value="mssqllocaldb" />
10+
<parameter value="mssqllocaldb"/>
1111
</parameters>
1212
</defaultConnectionFactory>
1313
<providers>
14-
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
14+
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/>
1515
</providers>
1616
</entityFramework>
17-
</configuration>
17+
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration>

src/GeoJSON.Net.Contrib.EntityFramework/GeoJSON.Net.Contrib.EntityFramework.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>GeoJSON.Net.Contrib.EntityFramework</RootNamespace>
1111
<AssemblyName>GeoJSON.Net.Contrib.EntityFramework</AssemblyName>
12-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
14+
<TargetFrameworkProfile />
1415
</PropertyGroup>
1516
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1617
<DebugSymbols>true</DebugSymbols>

src/GeoJSON.Net.Contrib.Wkb.nuspec

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,26 @@
1-
<?xml version="1.0"?>
2-
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
3-
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
4-
<id>GeoJSON.Net.Contrib.Wkb</id>
5-
<version>$version$</version>
6-
<authors>Alvaro Montero Gonzalez</authors>
7-
<requireLicenseAcceptance>false</requireLicenseAcceptance>
8-
<description>Provides GeoJSON.Net Converters from / to Wkb binary format.</description>
9-
<summary>This package contains custom JSON converters to be used with the base GeoJSON.Net library to bridge from and to Wkb binary format.</summary>
10-
<releaseNotes>First release</releaseNotes>
11-
<language>en-US</language>
12-
<copyright>Joerg Battermann and Contributors (!)</copyright>
13-
<licenseUrl>https://github.com/GeoJSON-Net/GeoJSON.Net.Contrib/blob/master/LICENSE</licenseUrl>
14-
<projectUrl>https://github.com/GeoJSON-Net/GeoJSON.Net.Contrib/blob/master/README.md</projectUrl>
15-
<dependencies>
16-
<dependency id="GeoJSON.Net" version="1.1.64" />
17-
</dependencies>
18-
<tags>GeoJSON JSON List Wkb Converters Conversion</tags>
19-
</metadata>
20-
<files>
21-
<file src="GeoJSON.Net.Contrib.Wkb\bin\Release\GeoJSON.Net.Contrib.Wkb.dll" target="lib\net452" />
22-
<file src="GeoJSON.Net.Contrib.Wkb\bin\Release\GeoJSON.Net.Contrib.Wkb.pdb" target="lib\net452" />
23-
<file src="GeoJSON.Net.Contrib.Wkb\bin\Release\GeoJSON.Net.Contrib.Wkb.xml" target="lib\net452" />
24-
</files>
25-
</package>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
3+
<metadata>
4+
<id>GeoJSON.Net.Contrib.Wkb</id>
5+
<version>0.1.2</version>
6+
<title>GeoJSON.Net.Contrib.Wkb</title>
7+
<authors>Alvaro Montero Gonzalez</authors>
8+
<licenseUrl>https://github.com/GeoJSON-Net/GeoJSON.Net.Contrib/blob/master/LICENSE</licenseUrl>
9+
<projectUrl>https://github.com/GeoJSON-Net/GeoJSON.Net.Contrib/blob/master/README.md</projectUrl>
10+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
11+
<description>Provides GeoJSON.Net Converters from / to Wkb binary format.</description>
12+
<summary>This package contains custom JSON converters to be used with the base GeoJSON.Net library to bridge from and to Wkb binary format.</summary>
13+
<releaseNotes>Targets net 45</releaseNotes>
14+
<copyright>Joerg Battermann and Contributors (!)</copyright>
15+
<language>en-US</language>
16+
<tags>GeoJSON JSON List Wkb Converters Conversion</tags>
17+
<dependencies>
18+
<dependency id="GeoJSON.Net" version="1.1.64" />
19+
</dependencies>
20+
</metadata>
21+
<files>
22+
<file src="lib\net45\GeoJSON.Net.Contrib.Wkb.dll" target="lib\net45\GeoJSON.Net.Contrib.Wkb.dll" />
23+
<file src="lib\net45\GeoJSON.Net.Contrib.Wkb.pdb" target="lib\net45\GeoJSON.Net.Contrib.Wkb.pdb" />
24+
<file src="lib\net45\GeoJSON.Net.Contrib.Wkb.XML" target="lib\net45\GeoJSON.Net.Contrib.Wkb.XML" />
25+
</files>
26+
</package>

src/GeoJSON.Net.Contrib.Wkb/GeoJSON.Net.Contrib.Wkb.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>GeoJSON.Net.Contrib.Wkb</RootNamespace>
1111
<AssemblyName>GeoJSON.Net.Contrib.Wkb</AssemblyName>
12-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
14+
<TargetFrameworkProfile />
1415
</PropertyGroup>
1516
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1617
<DebugSymbols>true</DebugSymbols>

0 commit comments

Comments
 (0)