Files

56 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.Magnetic</RootNamespace>
<AssemblyName>StandardScene.Magnetic</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.Magnetic.scene.json" CopyToOutputDirectory="PreserveNewest" />
2026-07-17 13:36:01 +08:00
<None Update="Configs\EventCar\FG2512073.json" CopyToOutputDirectory="PreserveNewest" />
2026-06-14 11:19:15 +08:00
</ItemGroup>
<!-- 基座:车型基类字段袋 / 通用 coder / 任务调度等留 Core;本 dll 为 scene.mag 平台(磁导航车型 + 磁循迹 coder) -->
<ItemGroup>
<ProjectReference Include="..\StandardScene.Core\StandardScene.Core.csproj" />
</ItemGroup>
<ItemGroup>
2026-07-17 13:36:01 +08:00
<Reference Include="CommonUsage">
<HintPath>$(StandRefDir)CommonUsage.dll</HintPath>
</Reference>
<Reference Include="LessokajiWeaverUtilities">
<HintPath>$(StandRefDir)LessokajiWeaverUtilities.dll</HintPath>
2026-06-14 11:19:15 +08:00
</Reference>
<Reference Include="SimpleCore">
2026-07-17 13:36:01 +08:00
<HintPath>$(StandRefDir)SimpleCore.dll</HintPath>
2026-06-14 11:19:15 +08:00
</Reference>
2026-07-17 13:36:01 +08:00
<Reference Include="SimpleLite">
<HintPath>$(StandSimpleLiteDir)SimpleLite.dll</HintPath>
2026-06-14 11:19:15 +08:00
</Reference>
<Reference Include="Topaz">
2026-07-17 13:36:01 +08:00
<HintPath>$(StandRefDir)Topaz.dll</HintPath>
2026-06-14 11:19:15 +08:00
</Reference>
</ItemGroup>
<ItemGroup>
2026-07-17 13:36:01 +08:00
<PackageReference Include="IoTClient" Version="1.0.40" />
2026-06-14 11:19:15 +08:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
</ItemGroup>
</Project>