Files
ParkingRobot/ClumsyPilot/ClumsyPilot.csproj
T

45 lines
1.4 KiB
XML
Raw Normal View History

2026-07-21 11:11:01 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
2026-07-21 17:38:16 +08:00
<LangVersion>10</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyName>ClumsyPilot</AssemblyName>
<RootNamespace>MultiWheelC</RootNamespace>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>build\Clumsy\</OutputPath>
2026-07-21 11:11:01 +08:00
</PropertyGroup>
<ItemGroup>
2026-07-21 17:38:16 +08:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
2026-07-21 11:11:01 +08:00
<PackageReference Include="System.Numerics.Vectors" Version="4.6.1" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Shared\*.cs"
Link="Shared\%(Filename)%(Extension)" />
</ItemGroup>
2026-07-21 11:11:01 +08:00
<ItemGroup>
<Reference Include="LessokajiWeaverUtilities">
<HintPath>ref\LessokajiWeaverUtilities.dll</HintPath>
</Reference>
<Reference Include="MDCSToolBox">
<HintPath>ref\MDCSToolBox.dll</HintPath>
</Reference>
<Reference Include="ClumsyCore">
<HintPath>ref\RefClumsyCore.dll</HintPath>
</Reference>
<Reference Include="ClumsyDance">
<HintPath>ref\RefClumsyDance.dll</HintPath>
</Reference>
<Reference Include="FundamentalLib">
<HintPath>ref\RefFundamentalLib.dll</HintPath>
</Reference>
<Reference Include="CommonUsage">
<HintPath>..\ref\CommonUsage.dll</HintPath>
</Reference>
2026-07-21 11:11:01 +08:00
</ItemGroup>
2026-07-21 17:38:16 +08:00
2026-07-21 11:11:01 +08:00
</Project>