Skip to content

Commit

Permalink
Updated Itinero.
Browse files Browse the repository at this point in the history
  • Loading branch information
xivk committed Mar 1, 2018
1 parent 14a6f55 commit 1043417
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 4 deletions.
28 changes: 28 additions & 0 deletions .vscode/launch.json
@@ -0,0 +1,28 @@
{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/src/IDP/bin/Debug/netcoreapp2.0/IDP.dll",
"args": [],
"cwd": "${workspaceFolder}/src/IDP",
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
"console": "internalConsole",
"stopAtEntry": false,
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
}
15 changes: 15 additions & 0 deletions .vscode/tasks.json
@@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/IDP/IDP.csproj"
],
"problemMatcher": "$msCompile"
}
]
}
6 changes: 2 additions & 4 deletions src/IDP/IDP.csproj
Expand Up @@ -4,8 +4,6 @@
<TargetFramework>netcoreapp2.0</TargetFramework>
<AssemblyName>IDP</AssemblyName>
<OutputType>Exe</OutputType>
<PackageId>IDP</PackageId>
<RuntimeFrameworkVersion>1.1.1</RuntimeFrameworkVersion>
<RuntimeIdentifiers>win8-x64;win10-x64;osx.10.11-x64;ubuntu.16.04-x64</RuntimeIdentifiers>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
Expand All @@ -20,9 +18,9 @@

<ItemGroup>
<PackageReference Include="GTFS" Version="2.1.5-pre02" />
<PackageReference Include="Itinero" Version="1.4.0-pre21" />
<PackageReference Include="Itinero" Version="1.4.0-pre37" />
<PackageReference Include="Itinero.Geo" Version="1.4.0-pre18" />
<PackageReference Include="Itinero.IO.Osm" Version="1.4.0-pre21" />
<PackageReference Include="Itinero.IO.Osm" Version="1.4.0-pre37" />
<PackageReference Include="Itinero.IO.Shape" Version="1.4.0-pre18" />
<PackageReference Include="Itinero.Transit" Version="0.4.0-alpha" />
<PackageReference Include="Serilog" Version="2.5.0" />
Expand Down

0 comments on commit 1043417

Please sign in to comment.