Initial commit

This commit is contained in:
2023-02-02 19:03:00 +01:00
commit f7edc288c1
15 changed files with 372 additions and 0 deletions

9
Server/Server.cs Normal file
View File

@ -0,0 +1,9 @@
namespace OSMServer;
public class Server
{
public Server()
{
Importer.Split("/home/glax/Downloads/bayern-latest.osm.bz2", "/home/glax/Downloads/split");
}
}

10
Server/Server.csproj Normal file
View File

@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>