~ruther/NosSmooth

ref: 5ee7ece7c2ea9823bc6f28e8b6c847edb83cecb0 NosSmooth/Extensions/NosSmooth.Extensions.Pathfinding/NosSmooth.Extensions.Pathfinding.csproj -rw-r--r-- 496 bytes
5ee7ece7 — Rutherther feat(pathfinding): add basic pathfinding using A* 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<Project Sdk="Microsoft.NET.Sdk">

    <PropertyGroup>
        <TargetFramework>net6.0</TargetFramework>
        <ImplicitUsings>enable</ImplicitUsings>
        <Nullable>enable</Nullable>
        <Description>NosSmooth extension allowing for finding paths on maps.</Description>
    </PropertyGroup>

    <ItemGroup>
      <PackageReference Include="NosSmooth.Core" Version="1.1.1" />
      <PackageReference Include="NosSmooth.Data.Abstractions" Version="2.0.0" />
    </ItemGroup>

</Project>