SimulationServer.csproj 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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="NPOI.Excel" Version="2.1.1" />
  16. <PackageReference Include="NPOIHelper" Version="2.0.13" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <Reference Include="BHJD.DEMdll">
  20. <HintPath>..\Dll\BHJD.DEMdll.dll</HintPath>
  21. </Reference>
  22. <Reference Include="Unity.Mathematics">
  23. <HintPath>..\Dll\Unity.Mathematics.dll</HintPath>
  24. </Reference>
  25. <Reference Include="UnityEngine">
  26. <HintPath>..\Dlls\UnityEngine.dll</HintPath>
  27. </Reference>
  28. </ItemGroup>
  29. </Project>