ThreatSourceLibaray/ThreatSource/ThreatSource.csproj
Tian jianyong bece0866b3 - 修改了版本号格式(0.2.18 -> 1.1.18)
- 修改了日志输出格式
- 飞行全程增加重力加速度
- 完善发射段的推力加速度计算
- 修改各导弹配置文件的初始发射速度、发动机燃烧时间
- 修改集成测试中导弹的发射距离、发射高度、发射角度
2025-05-14 20:23:57 +08:00

26 lines
771 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.1.0</Version>
<Product>ThreatSource Library</Product>
<Description>A comprehensive library for missile simulation and threat source modeling.</Description>
<Copyright>Copyright © 2025</Copyright>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="AirTransmission">
<HintPath>$(ProjectDir)lib\AirTransmission.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Tomlyn" Version="0.19.0" />
</ItemGroup>
</Project>