20 lines
700 B
XML
20 lines
700 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="$(SolutionDir)Solution.props" />
|
|
<PropertyGroup>
|
|
<TargetFramework>net472</TargetFramework>
|
|
<AssemblyName>Raytheon.Instruments.CommDevice.Contracts</AssemblyName>
|
|
<Description>ICommDevice Instrument Interface</Description>
|
|
<Product>HAL</Product>
|
|
|
|
<!-- Static versioning (Suitable for Development) -->
|
|
<!-- Disable the line below for dynamic versioning -->
|
|
<Version>1.2.0</Version>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Raytheon.Instruments.Contracts" Version="1.*" />
|
|
<PackageReference Include="Raytheon.Common" Version="1.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|