Files
geutebruck/geviscope-bridge/GeViScopeBridge/GeViScopeBridge.csproj
Administrator a92b909539 feat: GeViScope SDK integration with C# Bridge and Flutter app
- Add GeViScope Bridge (C# .NET 8.0) on port 7720
  - Full SDK wrapper for camera control, PTZ, actions/events
  - 17 REST API endpoints for GeViScope server interaction
  - Support for MCS (Media Channel Simulator) with 16 test channels
  - Real-time action/event streaming via PLC callbacks

- Add GeViServer Bridge (C# .NET 8.0) on port 7710
  - Integration with GeViSoft orchestration layer
  - Input/output control and event management

- Update Python API with new routers
  - /api/geviscope/* - Proxy to GeViScope Bridge
  - /api/geviserver/* - Proxy to GeViServer Bridge
  - /api/excel/* - Excel import functionality

- Add Flutter app GeViScope integration
  - GeViScopeRemoteDataSource with 17 API methods
  - GeViScopeBloc for state management
  - GeViScopeScreen with PTZ controls
  - App drawer navigation to GeViScope

- Add SDK documentation (extracted from PDFs)
  - GeViScope SDK docs (7 parts + action reference)
  - GeViSoft SDK docs (12 chunks)

- Add .mcp.json for Claude Code MCP server config

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-19 08:14:17 +01:00

75 lines
3.1 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PlatformTarget>x86</PlatformTarget>
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
<SelfContained>false</SelfContained>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
</ItemGroup>
<ItemGroup>
<!-- GeViScope SDK .NET Wrapper DLLs -->
<Reference Include="GscExceptionsNET_4_0">
<HintPath>C:\Program Files (x86)\GeViScopeSDK\BIN\GscExceptionsNET_4_0.dll</HintPath>
</Reference>
<Reference Include="GscActionsNET_4_0">
<HintPath>C:\Program Files (x86)\GeViScopeSDK\BIN\GscActionsNET_4_0.dll</HintPath>
</Reference>
<Reference Include="GscDBINET_4_0">
<HintPath>C:\Program Files (x86)\GeViScopeSDK\BIN\GscDBINET_4_0.dll</HintPath>
</Reference>
<Reference Include="GscMediaPlayerNET_4_0">
<HintPath>C:\Program Files (x86)\GeViScopeSDK\BIN\GscMediaPlayerNET_4_0.dll</HintPath>
</Reference>
</ItemGroup>
<!-- Copy native DLLs to output directory -->
<ItemGroup>
<!-- Core SDK DLLs -->
<None Include="C:\Program Files (x86)\GeViScopeSDK\BIN\GscDBI.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="C:\Program Files (x86)\GeViScopeSDK\BIN\GscActions.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="C:\Program Files (x86)\GeViScopeSDK\BIN\GscMediaPlayer.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="C:\Program Files (x86)\GeViScopeSDK\BIN\GscHelper.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="C:\Program Files (x86)\GeViScopeSDK\BIN\GscDecompressor.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<!-- MediaPlayer dependencies -->
<None Include="C:\Program Files (x86)\GeViScopeSDK\BIN\GscMediaAPI.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="C:\Program Files (x86)\GeViScopeSDK\BIN\GscJpegEncoder.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="C:\Program Files (x86)\GeViScopeSDK\BIN\ijl15.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="C:\Program Files (x86)\GeViScopeSDK\BIN\MPIWIN32.DLL">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="C:\Program Files (x86)\GeViScopeSDK\BIN\GLDModule.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="C:\Program Files (x86)\GeViScopeSDK\BIN\MscDBI.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="C:\Program Files (x86)\GeViScopeSDK\BIN\IntVidCompressor.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>