- Port core EXI encoding/decoding functionality to C# - Implement V2G protocol parsing and analysis - Add simplified decoder/encoder for roundtrip testing - Create comprehensive error handling with EXI exceptions - Support both byte array and file stream operations - Include packet structure analysis for V2GTP data - Successfully builds and runs basic functionality tests 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
687 B
XML
18 lines
687 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AssemblyTitle>V2GDecoderNet</AssemblyTitle>
|
|
<AssemblyDescription>C# port of OpenV2G EXI codec for V2G protocol messages</AssemblyDescription>
|
|
<AssemblyConfiguration>Release</AssemblyConfiguration>
|
|
<AssemblyCompany>V2GDecoder Port</AssemblyCompany>
|
|
<AssemblyProduct>V2GDecoderNet</AssemblyProduct>
|
|
<Copyright>Copyright © 2024</Copyright>
|
|
<AssemblyVersion>1.0.0.0</AssemblyVersion>
|
|
<FileVersion>1.0.0.0</FileVersion>
|
|
</PropertyGroup>
|
|
|
|
</Project> |