|
@@ -0,0 +1,186 @@
|
|
|
+<?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>{D458D1A1-3957-48D0-95BC-505D04EF7D69}</ProjectGuid>
|
|
|
+ <OutputType>Library</OutputType>
|
|
|
+ <AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
+ <RootNamespace>EVCB_OCPP.Packet</RootNamespace>
|
|
|
+ <AssemblyName>EVCB_OCPP.Packet</AssemblyName>
|
|
|
+ <TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
|
|
+ <FileAlignment>512</FileAlignment>
|
|
|
+ <Deterministic>true</Deterministic>
|
|
|
+ </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>
|
|
|
+ </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>
|
|
|
+ <ItemGroup>
|
|
|
+ <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
|
|
+ <HintPath>..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
|
|
|
+ </Reference>
|
|
|
+ <Reference Include="System" />
|
|
|
+ <Reference Include="System.ComponentModel.DataAnnotations" />
|
|
|
+ <Reference Include="System.Core" />
|
|
|
+ <Reference Include="System.Runtime.Serialization" />
|
|
|
+ <Reference Include="System.Xml.Linq" />
|
|
|
+ <Reference Include="System.Data.DataSetExtensions" />
|
|
|
+ <Reference Include="Microsoft.CSharp" />
|
|
|
+ <Reference Include="System.Data" />
|
|
|
+ <Reference Include="System.Net.Http" />
|
|
|
+ <Reference Include="System.Xml" />
|
|
|
+ </ItemGroup>
|
|
|
+ <ItemGroup>
|
|
|
+ <Compile Include="Features\CoreProfile.cs" />
|
|
|
+ <Compile Include="Features\Core\AuthorizeFeature.cs" />
|
|
|
+ <Compile Include="Features\Core\BootNotificationFeature.cs" />
|
|
|
+ <Compile Include="Features\Core\ChangeAvailabilityFeature.cs" />
|
|
|
+ <Compile Include="Features\Core\ChangeConfigurationFeature.cs" />
|
|
|
+ <Compile Include="Features\Core\ClearCacheFeature.cs" />
|
|
|
+ <Compile Include="Features\Core\DataTransferFeature.cs" />
|
|
|
+ <Compile Include="Features\Core\GetConfigurationFeature.cs" />
|
|
|
+ <Compile Include="Features\Core\HeartbeatFeature.cs" />
|
|
|
+ <Compile Include="Features\Core\MeterValuesFeature.cs" />
|
|
|
+ <Compile Include="Features\Core\RemoteStartTransactionFeature.cs" />
|
|
|
+ <Compile Include="Features\Core\RemoteStopTransactionFeature.cs" />
|
|
|
+ <Compile Include="Features\Core\ResetFeature.cs" />
|
|
|
+ <Compile Include="Features\Core\StartTransactionFeature.cs" />
|
|
|
+ <Compile Include="Features\Core\StatusNotificationFeature.cs" />
|
|
|
+ <Compile Include="Features\Core\StopTransactionFeature.cs" />
|
|
|
+ <Compile Include="Features\Core\UnlockConnectorFeature.cs" />
|
|
|
+ <Compile Include="Features\Feature.cs" />
|
|
|
+ <Compile Include="Features\Profile.cs" />
|
|
|
+ <Compile Include="Features\StandardConfiguration.cs" />
|
|
|
+ <Compile Include="Messages\Basic\BaseMessage.cs" />
|
|
|
+ <Compile Include="Messages\Basic\CallErrorMessage.cs" />
|
|
|
+ <Compile Include="Messages\Basic\CallMessage.cs" />
|
|
|
+ <Compile Include="Messages\Basic\CallResultMessage.cs" />
|
|
|
+ <Compile Include="Messages\Basic\KeyValueType.cs" />
|
|
|
+ <Compile Include="Messages\Basic\Queue.cs" />
|
|
|
+ <Compile Include="Messages\Core\AuthorizeConfirmation.cs" />
|
|
|
+ <Compile Include="Messages\Core\AuthorizeRequest.cs" />
|
|
|
+ <Compile Include="Messages\Core\BootNotificationConfirmation.cs" />
|
|
|
+ <Compile Include="Messages\Core\BootNotificationRequest.cs" />
|
|
|
+ <Compile Include="Messages\Core\ChangeAvailabilityConfirmation.cs" />
|
|
|
+ <Compile Include="Messages\Core\ChangeAvailabilityRequest.cs" />
|
|
|
+ <Compile Include="Messages\Core\ChangeConfigurationConfirmation.cs" />
|
|
|
+ <Compile Include="Messages\Core\ChangeConfigurationRequest.cs" />
|
|
|
+ <Compile Include="Messages\Core\ClearCacheConfirmation.cs" />
|
|
|
+ <Compile Include="Messages\Core\ClearCacheRequest.cs" />
|
|
|
+ <Compile Include="Messages\Core\DataTransferConfirmation.cs" />
|
|
|
+ <Compile Include="Messages\Core\DataTransferRequest.cs" />
|
|
|
+ <Compile Include="Messages\Core\GetConfigurationConfirmation.cs" />
|
|
|
+ <Compile Include="Messages\Core\GetConfigurationRequest.cs" />
|
|
|
+ <Compile Include="Messages\Core\HeartbeatConfirmation.cs" />
|
|
|
+ <Compile Include="Messages\Core\HeartbeatRequest.cs" />
|
|
|
+ <Compile Include="Messages\Core\MeterValuesConfirmation.cs" />
|
|
|
+ <Compile Include="Messages\Core\MeterValuesRequest.cs" />
|
|
|
+ <Compile Include="Messages\Core\RemoteStartTransactionConfirmation.cs" />
|
|
|
+ <Compile Include="Messages\Core\RemoteStartTransactionRequest.cs" />
|
|
|
+ <Compile Include="Messages\Core\RemoteStopTransactionConfirmation.cs" />
|
|
|
+ <Compile Include="Messages\Core\RemoteStopTransactionRequest.cs" />
|
|
|
+ <Compile Include="Messages\Core\ResetConfirmation.cs" />
|
|
|
+ <Compile Include="Messages\Core\ResetRequest.cs" />
|
|
|
+ <Compile Include="Messages\Core\StartTransactionConfirmation.cs" />
|
|
|
+ <Compile Include="Messages\Core\StartTransactionRequest.cs" />
|
|
|
+ <Compile Include="Messages\Core\StatusNotificationConfirmation.cs" />
|
|
|
+ <Compile Include="Messages\Core\StatusNotificationRequest.cs" />
|
|
|
+ <Compile Include="Messages\Core\StopTransactionConfirmation.cs" />
|
|
|
+ <Compile Include="Messages\Core\StopTransactionRequest.cs" />
|
|
|
+ <Compile Include="Messages\Core\UnlockConnectorConfirmation.cs" />
|
|
|
+ <Compile Include="Messages\Core\UnlockConnectorRequest.cs" />
|
|
|
+ <Compile Include="Messages\ErrorMessage.cs" />
|
|
|
+ <Compile Include="Messages\IConfirmation.cs" />
|
|
|
+ <Compile Include="Messages\IRequest.cs" />
|
|
|
+ <Compile Include="Messages\IValidatable.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\AuthorizationData.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\AuthorizationStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\AuthorizeStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\AvailabilityStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\AvailabilityType.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\BatteryPropertySign.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\BatteryType.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\BMSStatusAType.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\BMSStatusBType.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\BMSStatusCType.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\BMSStatusDType.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\BMSStatusEType.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\CancelReservationStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\CarConnectionStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ChargeMode.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ChargePointErrorCode.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ChargePointStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ChargerAutoTerminationStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ChargeReadyStatus .cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ChargeType.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ChargingProfileKindType.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ChargingProfilePurposeType.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ChargingProfileStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ChargingRateUnitType.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ChargingSchedule.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ChargingSchedulePeriod.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ChargingStrategy.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\Class1.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ClearCacheStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ClearChargingProfileStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ConfigurationStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\CoreStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\csChargingProfiles.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\CustomCommandType.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\DataTransferStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\DiagnosticsStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\FirmwareStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\GetCompositeScheduleStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\IConfiguration.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\IdTagInfo.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\KeyValue.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\Location.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\Measurand.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\MessageTrigger.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\MeterValue.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\Phase.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ProgramParam.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ProgramType.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ReadingContext.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\Reason.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\RecurrencyKindType.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\RegistrationStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\RemoteStartStopStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ReservationStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ResetStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ResetType.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\SampledValue.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\StartChargingType.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\StartWith.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\TriggerMessageStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\UnitOfMeasure.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\UnlockStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\UpdateStatus.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\UpdateType.cs" />
|
|
|
+ <Compile Include="Messages\SubTypes\ValueFormat.cs" />
|
|
|
+ <Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
+ <Compile Include="Utilities\ConfigureHelper.cs" />
|
|
|
+ <Compile Include="Utilities\FormatHelper.cs" />
|
|
|
+ <Compile Include="Utilities\UTCDateTimeConverter.cs" />
|
|
|
+ </ItemGroup>
|
|
|
+ <ItemGroup />
|
|
|
+ <ItemGroup>
|
|
|
+ <None Include="packages.config" />
|
|
|
+ </ItemGroup>
|
|
|
+ <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
|
+</Project>
|