Skip to content

Commit bc8c2b1

Browse files
committed
removed nuspec (migrated to latest csproj format)
1 parent 9709545 commit bc8c2b1

File tree

16 files changed

+89
-412
lines changed

16 files changed

+89
-412
lines changed
Lines changed: 27 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -1,90 +1,33 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
43
<PropertyGroup>
5-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{52FD515F-8EB4-4111-9460-E87DDB3CC27A}</ProjectGuid>
8-
<OutputType>Library</OutputType>
9-
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>GeoJSON.Net.Contrib.EntityFramework</RootNamespace>
11-
<AssemblyName>GeoJSON.Net.Contrib.EntityFramework</AssemblyName>
12-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13-
<FileAlignment>512</FileAlignment>
14-
<TargetFrameworkProfile />
15-
<SignAssembly>true</SignAssembly>
16-
<AssemblyOriginatorKeyFile>..\key.snk</AssemblyOriginatorKeyFile>
4+
<TargetFrameworks>net45</TargetFrameworks>
5+
<Description>Provides GeoJSON.Net Converters from / to the EntityFramework Spatial types.</Description>
6+
<Authors>Alvaro Montero Gonzalez</Authors>
7+
<Company>GeoJSON.Net</Company>
8+
<Copyright>Copyright © Alvaro Montero Gonzalez, Joerg Battermann, Matt Hunt, Xavier Fischer and Contributors, 2014 - 2019</Copyright>
9+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
10+
<Version>0.1.5</Version>
11+
<PackageProjectUrl>https://github.com/GeoJSON-Net/GeoJSON.Net.Contrib</PackageProjectUrl>
12+
<RepositoryUrl>https://github.com/GeoJSON-Net/GeoJSON.Net.Contrib.git</RepositoryUrl>
13+
<RepositoryType>git</RepositoryType>
14+
<PackageTags>geojson;geo;json;geolocation;ef;entity;framework;entityframework</PackageTags>
15+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
16+
<PackageReleaseNotes>Updated to GeoJson 1.2.14</PackageReleaseNotes>
1717
</PropertyGroup>
18-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19-
<DebugSymbols>true</DebugSymbols>
20-
<DebugType>full</DebugType>
21-
<Optimize>false</Optimize>
22-
<OutputPath>bin\Debug\</OutputPath>
23-
<DefineConstants>DEBUG;TRACE</DefineConstants>
24-
<ErrorReport>prompt</ErrorReport>
25-
<WarningLevel>4</WarningLevel>
26-
</PropertyGroup>
27-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28-
<DebugType>pdbonly</DebugType>
29-
<Optimize>true</Optimize>
30-
<OutputPath>bin\Release\</OutputPath>
31-
<DefineConstants>TRACE</DefineConstants>
32-
<ErrorReport>prompt</ErrorReport>
33-
<WarningLevel>4</WarningLevel>
34-
<DocumentationFile>bin\Release\GeoJSON.Net.Contrib.EntityFramework.XML</DocumentationFile>
35-
</PropertyGroup>
36-
<ItemGroup>
37-
<Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
38-
<HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.dll</HintPath>
39-
<Private>True</Private>
40-
</Reference>
41-
<Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
42-
<HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.SqlServer.dll</HintPath>
43-
<Private>True</Private>
44-
</Reference>
45-
<Reference Include="GeoJSON.Net, Version=1.1.73.0, Culture=neutral, PublicKeyToken=42c00ea87f5f14d4, processorArchitecture=MSIL">
46-
<HintPath>..\packages\GeoJSON.Net.1.1.73\lib\net45\GeoJSON.Net.dll</HintPath>
47-
</Reference>
48-
<Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
49-
<HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
50-
<Private>True</Private>
51-
</Reference>
52-
<Reference Include="System" />
53-
<Reference Include="System.ComponentModel.DataAnnotations" />
54-
<Reference Include="System.Core" />
55-
<Reference Include="System.Xml.Linq" />
56-
<Reference Include="System.Data.DataSetExtensions" />
57-
<Reference Include="Microsoft.CSharp" />
58-
<Reference Include="System.Data" />
59-
<Reference Include="System.Net.Http" />
60-
<Reference Include="System.Xml" />
61-
</ItemGroup>
18+
6219
<ItemGroup>
63-
<Compile Include="EntityFrameworkConvertToGeoJsonObject.cs" />
64-
<Compile Include="EntityFrameworkConvertToGeoJsonGeometry.cs" />
65-
<Compile Include="EntityFrameworkConvertToDbGeometry.cs" />
66-
<Compile Include="EntityFrameworkConvertToDbGeography.cs" />
67-
<Compile Include="Properties\AssemblyInfo.cs" />
20+
<PackageReference Include="EntityFramework" version="6.1.3" />
21+
<PackageReference Include="GeoJSON.Net" version="1.2.14" />
22+
<PackageReference Include="GeoJSON.Net.Contrib.Wkb" Version="0.1.5" />
23+
<PackageReference Include="Newtonsoft.Json" version="10.0.2" />
6824
</ItemGroup>
25+
6926
<ItemGroup>
70-
<None Include="..\key.snk">
71-
<Link>key.snk</Link>
72-
</None>
73-
<None Include="App.config" />
74-
<None Include="packages.config" />
27+
<Folder Include="Properties\" />
7528
</ItemGroup>
76-
<ItemGroup>
77-
<ProjectReference Include="..\GeoJSON.Net.Contrib.Wkb\GeoJSON.Net.Contrib.Wkb.csproj">
78-
<Project>{0696939c-5167-46df-8200-a7fccd5a9a08}</Project>
79-
<Name>GeoJSON.Net.Contrib.Wkb</Name>
80-
</ProjectReference>
81-
</ItemGroup>
82-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
83-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
84-
Other similar extension points exist, see Microsoft.Common.targets.
85-
<Target Name="BeforeBuild">
86-
</Target>
87-
<Target Name="AfterBuild">
88-
</Target>
89-
-->
90-
</Project>
29+
30+
<PropertyGroup>
31+
<FrameworkPathOverride Condition="'$(TargetFramework)' == 'net35'">$(MSBuildProgramFiles32)\Reference Assemblies\Microsoft\Framework\.NETFramework\v3.5\Profile\Client</FrameworkPathOverride>
32+
</PropertyGroup>
33+
</Project>

src/GeoJSON.Net.Contrib.EntityFramework/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 36 deletions
This file was deleted.

src/GeoJSON.Net.Contrib.EntityFramework/packages.config

Lines changed: 0 additions & 6 deletions
This file was deleted.
Lines changed: 25 additions & 105 deletions
Original file line numberDiff line numberDiff line change
@@ -1,111 +1,31 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
43
<PropertyGroup>
5-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{129AFFB0-773B-4F50-BFEC-E0856C19EED6}</ProjectGuid>
8-
<OutputType>Library</OutputType>
9-
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>GeoJSON.Net.Contrib.MsSqlSpatial</RootNamespace>
11-
<AssemblyName>GeoJSON.Net.Contrib.MsSqlSpatial</AssemblyName>
12-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13-
<FileAlignment>512</FileAlignment>
14-
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
15-
<RestorePackages>true</RestorePackages>
16-
<TargetFrameworkProfile />
17-
<SignAssembly>true</SignAssembly>
18-
<AssemblyOriginatorKeyFile>..\key.snk</AssemblyOriginatorKeyFile>
4+
<TargetFrameworks>net45</TargetFrameworks>
5+
<Description>Provides GeoJSON.Net Converters from / to the MS SQL Spatial types.</Description>
6+
<Authors>Xavier Fischer</Authors>
7+
<Company>GeoJSON.Net</Company>
8+
<Copyright>Copyright © Xavier Fischer, Joerg Battermann, Matt Hunt, and Contributors, 2014 - 2019</Copyright>
9+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
10+
<Version>0.3.4</Version>
11+
<PackageProjectUrl>https://github.com/GeoJSON-Net/GeoJSON.Net.Contrib</PackageProjectUrl>
12+
<RepositoryUrl>https://github.com/GeoJSON-Net/GeoJSON.Net.Contrib.git</RepositoryUrl>
13+
<RepositoryType>git</RepositoryType>
14+
<PackageTags>geojson;geo;json;geolocation;spatial;gis;sql;sqltypes;sqlgeometry;sqlgeography</PackageTags>
15+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
16+
<PackageReleaseNotes>Updated to GeoJson 1.2.14</PackageReleaseNotes>
1917
</PropertyGroup>
20-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21-
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
23-
<Optimize>false</Optimize>
24-
<OutputPath>bin\Debug\</OutputPath>
25-
<DefineConstants>DEBUG;TRACE</DefineConstants>
26-
<ErrorReport>prompt</ErrorReport>
27-
<WarningLevel>4</WarningLevel>
28-
<Prefer32Bit>false</Prefer32Bit>
29-
</PropertyGroup>
30-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31-
<DebugType>pdbonly</DebugType>
32-
<Optimize>true</Optimize>
33-
<OutputPath>bin\Release\</OutputPath>
34-
<DefineConstants>TRACE</DefineConstants>
35-
<ErrorReport>prompt</ErrorReport>
36-
<WarningLevel>4</WarningLevel>
37-
<DocumentationFile>bin\Release\GeoJSON.Net.Contrib.MsSqlSpatial.XML</DocumentationFile>
38-
<Prefer32Bit>false</Prefer32Bit>
39-
</PropertyGroup>
40-
<ItemGroup>
41-
<Reference Include="GeoJSON.Net, Version=1.1.73.0, Culture=neutral, PublicKeyToken=42c00ea87f5f14d4, processorArchitecture=MSIL">
42-
<HintPath>..\packages\GeoJSON.Net.1.1.73\lib\net45\GeoJSON.Net.dll</HintPath>
43-
</Reference>
44-
<Reference Include="Microsoft.SqlServer.Types, Version=14.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91, processorArchitecture=MSIL">
45-
<HintPath>..\packages\Microsoft.SqlServer.Types.14.0.314.76\lib\net40\Microsoft.SqlServer.Types.dll</HintPath>
46-
<Private>True</Private>
47-
</Reference>
48-
<Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
49-
<HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
50-
<Private>True</Private>
51-
</Reference>
52-
<Reference Include="System" />
53-
<Reference Include="System.Core" />
54-
<Reference Include="System.Xml.Linq" />
55-
<Reference Include="System.Data.DataSetExtensions" />
56-
<Reference Include="Microsoft.CSharp" />
57-
<Reference Include="System.Data" />
58-
<Reference Include="System.Xml" />
59-
</ItemGroup>
18+
6019
<ItemGroup>
61-
<Compile Include="MsSqlSpatialConvertToGeoJson.cs" />
62-
<Compile Include="MsSqlSpatialConvertToSqlGeography.cs" />
63-
<Compile Include="MsSqlSpatialConvertToSqlGeometry.cs" />
64-
<Compile Include="Properties\AssemblyInfo.cs" />
65-
<Compile Include="Sinks\Helpers\SinkGeometry.cs" />
66-
<Compile Include="Sinks\Helpers\SinkGeometryCollection.cs" />
67-
<Compile Include="Sinks\Helpers\SinkLineString.cs" />
68-
<Compile Include="Sinks\Helpers\SqlSpatialExtensions.cs" />
69-
<Compile Include="Sinks\SqlGeographyGeoJSONSink.cs" />
70-
<Compile Include="Sinks\SqlGeometryGeoJSONSink.cs" />
71-
<Compile Include="SqlServerTypes\Loader.cs" />
72-
<Compile Include="WktConvert.cs" />
20+
<PackageReference Include="GeoJSON.Net" version="1.2.14" />
21+
<PackageReference Include="Microsoft.SqlServer.Types" version="14.0.314.7" />
7322
</ItemGroup>
23+
7424
<ItemGroup>
75-
<None Include="..\key.snk">
76-
<Link>key.snk</Link>
77-
</None>
78-
<None Include="app.config" />
79-
<None Include="packages.config" />
25+
<Folder Include="Properties\" />
8026
</ItemGroup>
81-
<ItemGroup>
82-
<Content Include="SqlServerTypes\readme.htm" />
83-
<Content Include="SqlServerTypes\x64\msvcr120.dll">
84-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
85-
</Content>
86-
<Content Include="SqlServerTypes\x64\SqlServerSpatial140.dll">
87-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
88-
</Content>
89-
<Content Include="SqlServerTypes\x86\msvcr120.dll">
90-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
91-
</Content>
92-
<Content Include="SqlServerTypes\x86\SqlServerSpatial140.dll">
93-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
94-
</Content>
95-
</ItemGroup>
96-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
97-
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
98-
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
99-
<PropertyGroup>
100-
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
101-
</PropertyGroup>
102-
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
103-
</Target>
104-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
105-
Other similar extension points exist, see Microsoft.Common.targets.
106-
<Target Name="BeforeBuild">
107-
</Target>
108-
<Target Name="AfterBuild">
109-
</Target>
110-
-->
111-
</Project>
27+
28+
<PropertyGroup>
29+
<FrameworkPathOverride Condition="'$(TargetFramework)' == 'net35'">$(MSBuildProgramFiles32)\Reference Assemblies\Microsoft\Framework\.NETFramework\v3.5\Profile\Client</FrameworkPathOverride>
30+
</PropertyGroup>
31+
</Project>

src/GeoJSON.Net.Contrib.MsSqlSpatial/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 37 deletions
This file was deleted.

src/GeoJSON.Net.Contrib.MsSqlSpatial/packages.config

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)