Files
DP44/Common/DTS.Common.Import/DTS.Common.Import.csproj
2026-04-17 14:55:32 -04:00

211 lines
11 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{C1BC06F4-8657-4892-BC4D-1064DA01C4C7}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>DTS.Common.Import</RootNamespace>
<AssemblyName>DTS.Common.Import</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<ItemGroup>
<Reference Include="CsvHelper, Version=33.0.0.0, Culture=neutral, PublicKeyToken=8c4959082be5c823, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\DTS.Common\lib\CsvHelper33.0.1\CsvHelper.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="CalibrationImport.cs" />
<Compile Include="CsvUtil.cs" />
<Compile Include="ImportError.cs" />
<Compile Include="Parsers\CSV\CSVFile.cs" />
<Compile Include="DatabaseLocks\LockImportGroups.cs" />
<Compile Include="DatabaseLocks\LockImportSensors.cs" />
<Compile Include="DatabaseLocks\LockImportTestSetups.cs" />
<Compile Include="Parsers\EQX\EQXGroupImport.cs" />
<Compile Include="Factories\CSVSensorParserFactory.cs" />
<Compile Include="Factories\CSVTestParserFactory.cs" />
<Compile Include="Factories\DatabaseLocksFactory.cs" />
<Compile Include="Factories\SaveVariantFactory.cs" />
<Compile Include="Factories\XmlParserFactory.cs" />
<Compile Include="ImportOptions\EqxImportOptions.cs" />
<Compile Include="Interfaces\ILockImport.cs" />
<Compile Include="Interfaces\IParseCSVSensor.cs" />
<Compile Include="Interfaces\IParseCSVTest.cs" />
<Compile Include="Parsers\CSV\AbstractCSVParser.cs" />
<Compile Include="Parsers\CSV\Version0CSVSensorParser.cs" />
<Compile Include="Parsers\CSV\Version0CSVTestParser.cs" />
<Compile Include="Parsers\CSV\Version2CSVSensorParser.cs" />
<Compile Include="Parsers\CSV\Version3CSVSensorParser.cs" />
<Compile Include="Parsers\CSV\Version4CSVSensorParser.cs" />
<Compile Include="Parsers\CSV\Version5CSVTestParser.cs" />
<Compile Include="Parsers\CSV\Version6CSVTestParser.cs" />
<Compile Include="Parsers\CSV\DTSCSVSensorsParser.cs" />
<Compile Include="Parsers\CSV\DTSCSVTestSetupParser.cs" />
<Compile Include="Interfaces\ICalibrationImport.cs" />
<Compile Include="ImportOptions\CsvImportOptions.cs" />
<Compile Include="Interfaces\IGroupImport.cs" />
<Compile Include="ImportNotification.cs" />
<Compile Include="Interfaces\IParseVariant.cs" />
<Compile Include="ParseProcessor.cs" />
<Compile Include="Parsers\DTSXMLParseImport.cs" />
<Compile Include="Parsers\CSV\CSVGroupImport.cs" />
<Compile Include="ImportObject.cs" />
<Compile Include="Interfaces\IParseImport.cs" />
<Compile Include="Interfaces\IPersistImport.cs" />
<Compile Include="Parsers\DefaultParseImport.cs" />
<Compile Include="Parsers\EQX\EQXSensorsParser.cs" />
<Compile Include="Parsers\EQX\EQXTestSetupParser.cs" />
<Compile Include="Parsers\ParseVariantBase.cs" />
<Compile Include="Persist\PersistCalculator.cs" />
<Compile Include="Persist\SaveCheckoutTestSetup.cs" />
<Compile Include="Persist\SaveCustomChannels.cs" />
<Compile Include="Persist\SaveGlobalSettings.cs" />
<Compile Include="Persist\SaveGroups.cs" />
<Compile Include="Persist\SaveGroupTemplates.cs" />
<Compile Include="Persist\SaveHardware.cs" />
<Compile Include="Persist\SaveLabDetails.cs" />
<Compile Include="Persist\SaveSensor.cs" />
<Compile Include="Persist\SaveSensorModels.cs" />
<Compile Include="Persist\SaveServer.cs" />
<Compile Include="Persist\SaveTestEngineerDetails.cs" />
<Compile Include="Persist\SaveTestSetup.cs" />
<Compile Include="Persist\SaveTestSetupHelper.cs" />
<Compile Include="Persist\SaveUsers.cs" />
<Compile Include="Persist\SaveVariantBase.cs" />
<Compile Include="Persist\SaveCustomerDetails.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="GroupHelper.cs" />
<Compile Include="TsetSetupImportSensorInfo.cs" />
<Compile Include="XMLParseProcessor.cs" />
<Compile Include="XML\XMLParseCustomerDetails.cs" />
<Compile Include="XML\XMLParseDASList.cs" />
<Compile Include="XML\XMLParseGlobalSettings.cs" />
<Compile Include="XML\XMLParseGroupTemplates.cs" />
<Compile Include="XML\XMLParseLabDetails.cs" />
<Compile Include="XML\XMLParseMMECustomChannels.cs" />
<Compile Include="XML\XMLParseMMECustomDirections.cs" />
<Compile Include="XML\XMLParseMMECustomFilterClasses.cs" />
<Compile Include="XML\XMLParseMMECustomFineLoc1s.cs" />
<Compile Include="XML\XMLParseMMECustomFineLoc2s.cs" />
<Compile Include="XML\XMLParseMMECustomFineLoc3s.cs" />
<Compile Include="XML\XMLParseMMECustomMainLocations.cs" />
<Compile Include="XML\XMLParseMMECustomPhysicalDimensions.cs" />
<Compile Include="XML\XMLParseMMECustomPositions.cs" />
<Compile Include="XML\XMLParseMMECustomTestObjects.cs" />
<Compile Include="XML\XMLParseSensorModels.cs" />
<Compile Include="XML\XMLParseTestEngineerDetails.cs" />
<Compile Include="XML\XMLParseUsers.cs" />
<Compile Include="XML\XMLPre20ParseDASList.cs" />
<Compile Include="XML\XMLParseGroups.cs" />
<Compile Include="XML\XMLParseSensors.cs" />
<Compile Include="XML\XMLPre20ParseCalibrations.cs" />
<Compile Include="XML\XMLParseBase.cs" />
<Compile Include="XML\XMLParseCalibrations.cs" />
<Compile Include="XML\XMLPre20ParseGroups.cs" />
<Compile Include="XML\XMLPre20ParseGroupTemplates.cs" />
<Compile Include="XML\XMLPre20ParseSensors.cs" />
<Compile Include="XML\XMLParseTestSetups.cs" />
<Compile Include="XML\XMLPre20ParseTestSetups.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\DataPRO\EquipmentExchange\EquipmentExchange.csproj">
<Project>{2513797d-ec82-48d5-969e-6b3b5e6002e3}</Project>
<Name>EquipmentExchange</Name>
</ProjectReference>
<ProjectReference Include="..\..\DataPRO\SensorDB\SensorDB.csproj">
<Project>{444ef10c-046e-47ad-a9a5-17318d488723}</Project>
<Name>SensorDB</Name>
</ProjectReference>
<ProjectReference Include="..\..\DataPRO\Users\Users.csproj">
<Project>{be8d217d-6da9-4bca-b62a-a82325b33979}</Project>
<Name>Users</Name>
</ProjectReference>
<ProjectReference Include="..\DTS.Common.DAS.Concepts\DTS.Common.DAS.Concepts.csproj">
<Project>{AE3987F7-C4C6-40FB-A353-1A2DADEF7A9A}</Project>
<Name>DTS.Common.DAS.Concepts</Name>
</ProjectReference>
<ProjectReference Include="..\DTS.Common.DataModel\DTS.Common.DataModel.csproj">
<Project>{2a2f03a9-bf85-4360-a06a-cf3016d2633b}</Project>
<Name>DTS.Common.DataModel</Name>
</ProjectReference>
<ProjectReference Include="..\DTS.Common.ISO\DTS.Common.ISO.csproj">
<Project>{27d0c63b-9095-42da-95fd-f64444c80558}</Project>
<Name>DTS.Common.ISO</Name>
</ProjectReference>
<ProjectReference Include="..\DTS.Common.Serialization\DTS.Common.Serialization.csproj">
<Project>{0679d014-59c2-4327-b288-0e3bd1374710}</Project>
<Name>DTS.Common.Serialization</Name>
</ProjectReference>
<ProjectReference Include="..\DTS.Common.SettingsDB\DTS.Common.Settings.csproj">
<Project>{61017104-d8ee-41d1-b9ca-dad863ff78b2}</Project>
<Name>DTS.Common.Settings</Name>
</ProjectReference>
<ProjectReference Include="..\DTS.Common.SharedResource\DTS.Common.SharedResource.csproj">
<Project>{c01e723f-86e2-403a-864c-9f56bdb60b8d}</Project>
<Name>DTS.Common.SharedResource</Name>
</ProjectReference>
<ProjectReference Include="..\DTS.Common.Storage\DTS.Common.Storage.csproj">
<Project>{e3be457c-0ac7-4a9c-bc81-eafeb3217878}</Project>
<Name>DTS.Common.Storage</Name>
</ProjectReference>
<ProjectReference Include="..\DTS.Common.Utilities\DTS.Common.Utilities.csproj">
<Project>{D6DA1B74-C711-43C2-91B1-1908A8D04DBF}</Project>
<Name>DTS.Common.Utilities</Name>
</ProjectReference>
<ProjectReference Include="..\DTS.Common\DTS.Common.csproj">
<Project>{f7a0804f-61a4-40ae-83d0-f1137622b592}</Project>
<Name>DTS.Common</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>