SimulationServer.csproj 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <TargetFramework>net7.0</TargetFramework>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <ProjectReference Include="..\KYFramework\KYFramework.csproj" />
  10. <ProjectReference Include="..\KYNetwork\KYNetwork.csproj" />
  11. <ProjectReference Include="..\Models\SimulationCommon\SimulationCommon.csproj" />
  12. <ProjectReference Include="..\ThirdParty\ThirdParty.csproj" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <PackageReference Include="GeoCoordinate" Version="2.0.1" />
  16. <PackageReference Include="MathNet.Numerics" Version="5.0.0" />
  17. <PackageReference Include="NPOI.Excel" Version="2.1.1" />
  18. <PackageReference Include="NPOIHelper" Version="2.0.13" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <Reference Include="BHJD.DEMdll">
  22. <HintPath>..\Dll\BHJD.DEMdll.dll</HintPath>
  23. </Reference>
  24. <Reference Include="Unity.Mathematics">
  25. <HintPath>..\Dll\Unity.Mathematics.dll</HintPath>
  26. </Reference>
  27. <Reference Include="UnityEngine">
  28. <HintPath>..\Dlls\UnityEngine.dll</HintPath>
  29. </Reference>
  30. </ItemGroup>
  31. </Project>