Naming Changes

This commit is contained in:
2023-02-02 22:30:43 +01:00
parent f7edc288c1
commit 58aac549c7
17 changed files with 366 additions and 298 deletions

View File

@ -1,9 +1,13 @@
namespace OSMServer;
using OSMImporter;
namespace Server;
public class Server
{
public Server()
public static void Main(string[] args)
{
Importer.Split("/home/glax/Downloads/bayern-latest.osm.bz2", "/home/glax/Downloads/split");
Importer.Split("/home/glax/Downloads/oberbayern-latest.osm", "/home/glax/Downloads/split");
}
}

View File

@ -7,4 +7,8 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\OSMImporter\OSMImporter.csproj" />
</ItemGroup>
</Project>