Big changes

This commit is contained in:
Duc
2025-03-13 12:04:22 -07:00
parent c689fcb7f9
commit ffa9905494
748 changed files with 199255 additions and 3743 deletions

View File

@@ -1,73 +1,86 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$(SolutionDir)Program.props" />
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<OutputType>Library</OutputType>
<AssemblyName>Program</AssemblyName>
<UseWPF>true</UseWPF>
<Description>Program DLL serves as starting test point</Description>
<Company>Raytheon Technologies</Company>
<Product>NGSRI Program</Product>
<Authors>TEEC</Authors>
<Copyright>Copyright © Raytheon Technologies $([System.DateTime]::get_now().ToString("yyyy"))</Copyright>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<!-- Dynamic Versioning (Suitable for Release) -->
<!-- <Version>$(Version)$(Suffix)</Version> -->
<Import Project="$(SolutionDir)Solution.props" />
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<OutputType>Library</OutputType>
<AssemblyName>Program</AssemblyName>
<UseWPF>true</UseWPF>
<Description>NGSRI Program</Description>
<Product>NGSRI Program GUI</Product>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<!-- Static Versioning (Suitable for Development) -->
<Version>1.0.0</Version>
<Configurations>Debug;Release;Deploy</Configurations>
</PropertyGroup>
<!-- Static versioning (Suitable for Development) -->
<!-- Disable the line below for dynamic versioning -->
<Version>1.0.0</Version>
<ApplicationIcon>Resources\Icons\app.ico</ApplicationIcon>
<LangVersion>10.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Raytheon.Configuration" Version="*" />
<PackageReference Include="Raytheon.Configuration.Contracts" Version="*" />
<ItemGroup>
<PackageReference Include="NLog" Version="5.0.0" />
<PackageReference Include="Raytheon.Instruments.InstrumentManager.GeneralInstrumentManager" Version="1.4.1" />
<!--
<PackageReference Include="NGSRI" Version="1.0.0" />
-->
</ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.2" />
<PackageReference Include="Raytheon.Instruments.InstrumentManager.GeneralInstrumentManager" Version="1.5.0" />
<PackageReference Include="Raytheon.Common" Version="1.0.0" />
<PackageReference Include="Raytheon.Instruments.Implementation" Version="1.0.0" />
<PackageReference Include="Raytheon.MAL" Version="1.0.0" />
</ItemGroup>
<!-- Copy pdb files for DLLs in nuget packages to output directory-->
<Target Name="IncludeSymbolFiles" AfterTargets="ResolveAssemblyReferences" Condition="@(ReferenceCopyLocalPaths) != ''">
<ItemGroup>
<ReferenceCopyLocalPaths Include="%(ReferenceCopyLocalPaths.RelativeDir)%(ReferenceCopyLocalPaths.Filename).pdb" />
<ReferenceCopyLocalPaths Remove="@(ReferenceCopyLocalPaths)" Condition="!Exists('%(FullPath)')" />
</ItemGroup>
</Target>
<ItemGroup>
<ProjectReference Include="..\Instruments\PowerSupplies\Keysight67XX\KeysightN67XX.csproj" />
<ProjectReference Include="..\MeasurementManagers\PowerSupplyMeasurementManager\PowerSupplyMeasurementManager.csproj" />
<ProjectReference Include="..\ProgramGUI\ProgramGui.csproj" />
<ProjectReference Include="..\Raytheon.Common\Raytheon.Common.csproj" />
</ItemGroup>
<ItemGroup>
<ItemGroup>
<Reference Include="NationalInstruments.TestStand.Interop.API">
<HintPath>..\ProgramLib\Dependencies\NationalInstruments.TestStand.Interop.API.dll</HintPath>
</Reference>
<Reference Include="System.Windows" />
</ItemGroup>
<Reference Include="System.Windows" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Icons\app.ico" />
<Resource Include="Resources\Images\black-led.png" />
<Resource Include="Resources\Images\green-check-mark.png" />
<Resource Include="Resources\Images\green-led.png" />
<Resource Include="Resources\Images\missile.png" />
<Resource Include="Resources\Images\red-cross-mark.png" />
<Resource Include="Resources\Images\red-led.png" />
<Resource Include="Resources\Images\Title_Bar_Buttons\close_black.png" />
<Resource Include="Resources\Images\Title_Bar_Buttons\close_white.png" />
<Resource Include="Resources\Images\Title_Bar_Buttons\maximize.png" />
<Resource Include="Resources\Images\Title_Bar_Buttons\minimize.png" />
<Resource Include="Resources\Images\Title_Bar_Buttons\restore.png" />
<Resource Include="Resources\Images\yellow-led.png" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<Target Name="CopyFiles" AfterTargets="AfterBuild">
<ItemGroup>
<FILES_1 Include="Dependencies\*.*" />
<FILES_2 Include="InstrumentConfigFile\*.*" />
<FILES_3 Include="Dependencies\RINSS\*.*" />
<FILES_2 Include="InstrumentConfigFiles\*.*" />
<FILES_3 Include="TestMethodConfigFiles\*.*" />
<FILES_4 Include="Dependencies\RINSS\*.*" />
</ItemGroup>
<Copy SourceFiles="@(FILES_1)" DestinationFolder="$(OutDir)" />
<Copy SourceFiles="@(FILES_2)" DestinationFolder="$(OutDir)InstrumentConfig" />
<Copy SourceFiles="@(FILES_3)" DestinationFolder="$(OutDir)RINSS" />
<Copy SourceFiles="ProgramConfigFile\config.ini" DestinationFolder="$(OutDir)" />
<Copy SourceFiles="MiscConfigFile\NLog.config" DestinationFolder="$(OutDir)" />
<Copy SourceFiles="@(FILES_3)" DestinationFolder="$(OutDir)TestMethodConfig" />
<Copy SourceFiles="@(FILES_4)" DestinationFolder="$(OutDir)RINSS" />
<Copy SourceFiles="ProgramConfigFiles\config.ini" DestinationFolder="$(OutDir)" />
<Copy SourceFiles="MiscConfigFiles\NLog.config" DestinationFolder="$(OutDir)" />
</Target>
<Target Name="ProjClean" AfterTargets="AfterClean">
<RemoveDir Directories="$(OutDir)InstrumentConfig" />
<RemoveDir Directories="$(OutDir)TestMethodConfig" />
<RemoveDir Directories="$(OutDir)RINSS" />
<Delete Files="$(OutDir)config.ini" />
<Delete Files="$(OutDir)NLog.config" />