123456789101112131415161718192021222324252627282930313233343536 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <TargetFramework>net7.0</TargetFramework>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\KYFramework\KYFramework.csproj" />
- <ProjectReference Include="..\KYNetwork\KYNetwork.csproj" />
- <ProjectReference Include="..\Models\SimulationCommon\SimulationCommon.csproj" />
- <ProjectReference Include="..\ThirdParty\ThirdParty.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="GeoCoordinate" Version="2.0.1" />
- <PackageReference Include="MathNet.Numerics" Version="5.0.0" />
- <PackageReference Include="NPOI.Excel" Version="2.1.1" />
- <PackageReference Include="NPOIHelper" Version="2.0.13" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="BHJD.DEMdll">
- <HintPath>..\Dll\BHJD.DEMdll.dll</HintPath>
- </Reference>
- <Reference Include="Unity.Mathematics">
- <HintPath>..\Dll\Unity.Mathematics.dll</HintPath>
- </Reference>
- <Reference Include="UnityEngine">
- <HintPath>..\Dlls\UnityEngine.dll</HintPath>
- </Reference>
- </ItemGroup>
- </Project>
|