26 lines
772 B
XML
26 lines
772 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Version>1.1.22</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> |