Skip to content
This repository was archived by the owner on Jan 28, 2026. It is now read-only.

Commit 9e2ce9a

Browse files
committed
Merge branch 'master' into pr70
2 parents 0912fe3 + 9927f7c commit 9e2ce9a

112 files changed

Lines changed: 1593 additions & 2544 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
/bin
22
/packages
33
/examples/packages
4-
app.config
5-
docs
6-
nuget.exe
7-
AssemblyVersion.cs
4+
test/Geocoding.Tests/settings-override.json
5+
6+
.vs
7+
/artifacts
8+
project.lock.json
89

910
#################
1011
## Visual Studio

.vscode/launch.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": ".NET Core Launch (console)",
6+
"type": "coreclr",
7+
"request": "launch",
8+
"preLaunchTask": "build",
9+
"program": "${workspaceRoot}/bin/Debug/<target-framework>/<project-name.dll>",
10+
"args": [],
11+
"cwd": "${workspaceRoot}",
12+
"externalConsole": false,
13+
"stopAtEntry": false
14+
},
15+
{
16+
"name": ".NET Core Attach",
17+
"type": "coreclr",
18+
"request": "attach",
19+
"processId": "${command.pickProcess}"
20+
}
21+
]
22+
}

.vscode/tasks.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"version": "0.1.0",
3+
"command": "dotnet",
4+
"isShellCommand": true,
5+
"args": [],
6+
"tasks": [
7+
{
8+
"taskName": "build",
9+
"args": [
10+
""
11+
],
12+
"isBuildCommand": true,
13+
"problemMatcher": "$msCompile"
14+
}
15+
]
16+
}

AssemblyInfoCommon.cs

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

Core/AsyncGeocoderExtensions.cs

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

Core/Core.csproj

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

Core/IAsyncGeocoder.cs

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

Core/IBatchGeocoder.cs

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

Core/IGeocoder.cs

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

Core/Properties/AssemblyInfo.cs

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

0 commit comments

Comments
 (0)