Skip to content

Commit 4c99ae1

Browse files
committed
Added solution and NuGet packages
1 parent 30bf2db commit 4c99ae1

File tree

68 files changed

+135
-44
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+135
-44
lines changed

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
bin/
2+
obj/
3+
*.user
4+
*.suo
5+
_ReSharper*
6+
*.zip
7+
*.nupkg
8+
*.pubxml

GMaps.Demos/GMaps.Demos.csproj

+4-13
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,13 @@
4545
</PropertyGroup>
4646
<ItemGroup>
4747
<Reference Include="AjaxControlToolkit">
48-
<HintPath>..\packages\AjaxControlToolkit.4.1.50927\lib\35\AjaxControlToolkit.dll</HintPath>
48+
<HintPath>..\packages\AjaxControlToolkit.7.0429\lib\35\AjaxControlToolkit.dll</HintPath>
4949
</Reference>
50-
<Reference Include="AntiXSSLibrary">
51-
<HintPath>..\packages\AjaxControlToolkit.4.1.50927\lib\35\SanitizerProviders\AntiXSSLibrary.dll</HintPath>
52-
</Reference>
53-
<Reference Include="HtmlSanitizationLibrary">
54-
<HintPath>..\packages\AjaxControlToolkit.4.1.50927\lib\35\SanitizerProviders\HtmlSanitizationLibrary.dll</HintPath>
50+
<Reference Include="GMaps">
51+
<HintPath>..\packages\Subgurim.Maps.4.1.0.6\lib\net20\GMaps.dll</HintPath>
5552
</Reference>
5653
<Reference Include="SanitizerProviders">
57-
<HintPath>..\packages\AjaxControlToolkit.4.1.50927\lib\35\SanitizerProviders\SanitizerProviders.dll</HintPath>
54+
<HintPath>..\packages\AjaxControlToolkit.7.0429\lib\35\SanitizerProviders\SanitizerProviders.dll</HintPath>
5855
</Reference>
5956
<Reference Include="System" />
6057
<Reference Include="System.Data" />
@@ -751,12 +748,6 @@
751748
<ItemGroup>
752749
<Folder Include="App_Data\" />
753750
</ItemGroup>
754-
<ItemGroup>
755-
<ProjectReference Include="..\GMaps\GMaps.csproj">
756-
<Project>{688B53ED-70CC-4243-9F62-315CA8202312}</Project>
757-
<Name>GMaps</Name>
758-
</ProjectReference>
759-
</ItemGroup>
760751
<ItemGroup>
761752
<Content Include="Demos.Master" />
762753
</ItemGroup>

GMaps.Demos/Web.config

+28-31
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
<?xml version="1.0"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33

44
<configSections>
55
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
66
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
7-
<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
7+
<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
88
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
99
<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere" />
1010
<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
@@ -16,8 +16,8 @@
1616
</configSections>
1717

1818
<appSettings>
19-
<add key="googlemaps.subgurim.net" value="" />
20-
<add key="googlemaps.subgurim.net_Commercial" value="" />
19+
<!-- Add your Google Maps API Key from Google --><add key="googlemaps.subgurim.net" value="" />
20+
<!-- And add your Commercial Key from Subgurim if you have purchased one --><add key="googlemaps.subgurim.net_Commercial" value="" />
2121
<!--<add key="googlemaps_api_premier" value="gme-xxxxx" />-->
2222
<!--<add key="googlemaps_api_premier_channel" value="mkting" />-->
2323
</appSettings>
@@ -27,10 +27,10 @@
2727
<compilation debug="true">
2828

2929
<assemblies>
30-
<add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
31-
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
32-
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
33-
<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
30+
<add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
31+
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
32+
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
33+
<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
3434
</assemblies>
3535

3636
</compilation>
@@ -55,30 +55,29 @@
5555

5656
<pages>
5757
<controls>
58-
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
59-
<add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
58+
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
59+
<add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
6060
<add tagPrefix="ajaxToolkit" assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" />
61-
</controls>
61+
<add tagPrefix="gmaps" namespace="Subgurim.Controles" assembly="GMaps" /></controls>
6262
</pages>
6363

6464
<httpHandlers>
65-
<remove verb="*" path="*.asmx"/>
66-
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
67-
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
68-
<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/>
65+
<remove verb="*" path="*.asmx" />
66+
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
67+
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
68+
<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" />
6969
</httpHandlers>
7070
<httpModules>
71-
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
71+
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
7272
</httpModules>
7373

7474
</system.web>
7575

7676
<system.codedom>
7777
<compilers>
78-
<compiler language="c#;cs;csharp" extension=".cs" warningLevel="4"
79-
type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
80-
<providerOption name="CompilerVersion" value="v3.5"/>
81-
<providerOption name="WarnAsError" value="false"/>
78+
<compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
79+
<providerOption name="CompilerVersion" value="v3.5" />
80+
<providerOption name="WarnAsError" value="false" />
8281
</compiler>
8382
</compilers>
8483
</system.codedom>
@@ -88,32 +87,30 @@
8887
Information Services 7.0. It is not necessary for previous version of IIS.
8988
-->
9089
<system.webServer>
91-
<validation validateIntegratedModeConfiguration="false"/>
90+
<validation validateIntegratedModeConfiguration="false" />
9291
<modules>
9392
<remove name="ScriptModule" />
94-
<add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
93+
<add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
9594
</modules>
9695
<handlers>
97-
<remove name="WebServiceHandlerFactory-Integrated"/>
96+
<remove name="WebServiceHandlerFactory-Integrated" />
9897
<remove name="ScriptHandlerFactory" />
9998
<remove name="ScriptHandlerFactoryAppServices" />
10099
<remove name="ScriptResource" />
101-
<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode"
102-
type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
103-
<add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode"
104-
type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
100+
<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
101+
<add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
105102
<add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
106103
</handlers>
107104
</system.webServer>
108105
<runtime>
109106
<assemblyBinding appliesTo="v2.0.50727" xmlns="urn:schemas-microsoft-com:asm.v1">
110107
<dependentAssembly>
111-
<assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/>
112-
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
108+
<assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" />
109+
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" />
113110
</dependentAssembly>
114111
<dependentAssembly>
115-
<assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/>
116-
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
112+
<assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35" />
113+
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" />
117114
</dependentAssembly>
118115
</assemblyBinding>
119116
</runtime>

GMaps.Demos/packages.config

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="AjaxControlToolkit" version="4.1.50927" />
4+
<package id="AjaxControlToolkit" version="7.0429" targetFramework="net35" />
5+
<package id="Subgurim.Maps" version="4.1.0.6" targetFramework="net35" />
46
</packages>

Subgurim.Maps.Demos.sln

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2012
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GMaps.Demos", "GMaps.Demos\GMaps.Demos.csproj", "{29F813E3-8FF7-46A1-ACE7-74FBFEF831A5}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|Any CPU = Debug|Any CPU
9+
Release|Any CPU = Release|Any CPU
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{29F813E3-8FF7-46A1-ACE7-74FBFEF831A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13+
{29F813E3-8FF7-46A1-ACE7-74FBFEF831A5}.Debug|Any CPU.Build.0 = Debug|Any CPU
14+
{29F813E3-8FF7-46A1-ACE7-74FBFEF831A5}.Release|Any CPU.ActiveCfg = Release|Any CPU
15+
{29F813E3-8FF7-46A1-ACE7-74FBFEF831A5}.Release|Any CPU.Build.0 = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
EndGlobal
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>AjaxControlToolkit</id>
5+
<version>7.0429</version>
6+
<title>AjaxControlToolkit</title>
7+
<authors>Microsoft</authors>
8+
<owners>Microsoft</owners>
9+
<licenseUrl>http://ajaxcontroltoolkit.codeplex.com/license</licenseUrl>
10+
<projectUrl>http://ajaxcontroltoolkit.codeplex.com/</projectUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<description>The Ajax Control Toolkit contains a rich set of controls that you can use to build highly responsive and interactive Ajax-enabled Web applications. The Ajax Control Toolkit contains more than 40 controls, including the AutoComplete, CollapsiblePanel, ColorPicker, MaskedEdit, Calendar, Accordion, and Watermark controls. Using the Ajax Control Toolkit, you can build Ajax-enabled ASP.NET Web Forms applications by dragging-and-dropping Toolkit controls from the Visual Studio Toolbox onto a Web Forms page.</description>
13+
<summary>Build Ajax applications in Web Forms using the more than 40 controls in the Ajax Control Toolkit</summary>
14+
<releaseNotes />
15+
<copyright />
16+
<language>en-US</language>
17+
<frameworkAssemblies>
18+
<frameworkAssembly assemblyName="System.Web" targetFramework=".NETFramework4.5" />
19+
</frameworkAssemblies>
20+
</metadata>
21+
</package>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0"?>
2+
<configuration>
3+
<system.web>
4+
<pages>
5+
<controls>
6+
<add tagPrefix="ajaxToolkit" assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" />
7+
</controls>
8+
</pages>
9+
</system.web>
10+
</configuration>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
param($installPath, $toolsPath, $package, $project)
2+
$project.Object.References | Where-Object { $_.Name -eq 'Microsoft.ScriptManager.MSAjax' } | ForEach-Object { $_.Remove() }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
3+
<metadata>
4+
<id>Subgurim.Maps</id>
5+
<version>4.1.0.6</version>
6+
<title>Subgurim GoogleMaps for ASP.NET</title>
7+
<authors>Marc Climent, Subgurim</authors>
8+
<owners>Marc Climent, Subgurim</owners>
9+
<projectUrl>http://en.googlemaps.subgurim.net/</projectUrl>
10+
<iconUrl>http://i46.tinypic.com/31435o6.png</iconUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<description>Subgurim Maps for ASP.NET is lightweight and offers all the power of the GoogleMaps API v3 and much more without any external dependencies.
13+
14+
Report any bug or suggestion on the project page or to @SubgurimMaps on Twitter</description>
15+
<releaseNotes>Updated Geocoding to API v3 with compatibility.</releaseNotes>
16+
<copyright>Copyright 2013</copyright>
17+
<language />
18+
<tags>asp.net google maps googlemaps</tags>
19+
</metadata>
20+
</package>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0"?>
2+
<configuration>
3+
<appSettings>
4+
<!-- Add your Google Maps API Key from Google -->
5+
<add key="googlemaps.subgurim.net" value="" />
6+
<!-- And add your Commercial Key from Subgurim if you have purchased one -->
7+
<add key="googlemaps.subgurim.net_Commercial" value="" />
8+
</appSettings>
9+
<system.web>
10+
<pages>
11+
<controls>
12+
<add tagPrefix="gmaps" namespace="Subgurim.Controles" assembly="GMaps" />
13+
</controls>
14+
</pages>
15+
</system.web>
16+
</configuration>
Binary file not shown.

packages/repositories.config

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<repositories>
3+
<repository path="..\GMaps.Demos\packages.config" />
4+
</repositories>

0 commit comments

Comments
 (0)