24 lines
946 B
XML
24 lines
946 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="$(SolutionDir)Solution.props" />
|
|
<PropertyGroup>
|
|
<TargetFramework>net472</TargetFramework>
|
|
<AssemblyName>Raytheon.Instruments.PowerSupplySystemSim</AssemblyName>
|
|
<Product>Power Supply System Sim implementation</Product>
|
|
<Description>Power Supply System Sim implementation</Description>
|
|
<OutputType>Library</OutputType>
|
|
|
|
<!-- Static versioning (Suitable for Development) -->
|
|
<!-- Disable the line below for dynamic versioning -->
|
|
<Version>1.1.0</Version>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NLog" Version="5.0.0" />
|
|
<PackageReference Include="Raytheon.Instruments.PowerSupplySystem.Contracts" Version="1.3.0" />
|
|
<PackageReference Include="Raytheon.Instruments.DCPwr.Contracts" Version="2.7.0" />
|
|
<PackageReference Include="Raytheon.Common" Version="1.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|