Files

54 lines
2.2 KiB
XML
Raw Permalink Normal View History

2026-06-14 11:19:15 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<OutputType>Library</OutputType>
<RootNamespace>StandardScene</RootNamespace>
<AssemblyName>StandardScene.Devices</AssemblyName>
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Platforms>AnyCPU;x64</Platforms>
<PlatformTarget>x64</PlatformTarget>
<Deterministic>true</Deterministic>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<NoWarn>$(NoWarn);NU1701;CS0618;CS0612;MSB3277;CA1416</NoWarn>
<AssemblySearchPaths>{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName};{GAC}</AssemblySearchPaths>
</PropertyGroup>
<!-- 插件清单:随 dll 输出,供 SimpleLite plugins 选择性加载(约定 <dll>.scene.json -->
<ItemGroup>
<None Update="StandardScene.Devices.scene.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<!-- 基座:各设备抽象基类 + 注册特性 + 业务编排(Mission/Manager/UdpService) 均留 Core;本 dll 仅含具体驱动(门/充电桩/按钮盒) -->
<ItemGroup>
<ProjectReference Include="..\StandardScene.Core\StandardScene.Core.csproj" />
</ItemGroup>
<!-- 与 Core 一致的本地契约/工具 dll + Leeg 按钮盒 SDKleegiot);Modbus/TCP 经 Core 的 Utils/TCP 间接使用,无需 NuGet -->
<ItemGroup>
<Reference Include="CommonUsage">
2026-07-17 13:36:01 +08:00
<HintPath>$(StandRefDir)CommonUsage.dll</HintPath>
2026-06-14 11:19:15 +08:00
</Reference>
2026-07-17 13:36:01 +08:00
<Reference Include="leegKeys-sdk">
<HintPath>$(LeegKeysSdkPath)</HintPath>
2026-06-14 11:19:15 +08:00
</Reference>
<Reference Include="LessokajiWeaverUtilities">
2026-07-17 13:36:01 +08:00
<HintPath>$(StandRefDir)LessokajiWeaverUtilities.dll</HintPath>
2026-06-14 11:19:15 +08:00
</Reference>
2026-07-17 13:36:01 +08:00
<Reference Include="SimpleCore">
<HintPath>$(StandRefDir)SimpleCore.dll</HintPath>
</Reference>
<Reference Include="SimpleLite">
<HintPath>$(StandSimpleLiteDir)SimpleLite.dll</HintPath>
</Reference>
<Reference Include="Topaz">
<HintPath>$(StandRefDir)Topaz.dll</HintPath>
2026-06-14 11:19:15 +08:00
</Reference>
</ItemGroup>
</Project>