Files
Hi.Sample/Hi.Sample.csproj
T
iambossandClaude Opus 5 038e7469d2 build(Hi.Sample): move the version line to 3.2 and retarget HiAPI references
VersionPrefix follows the workspace onto the 3.2 line and the floating HiAPI
package references move from 3.1.* to 3.2.*, which is what the libraries now
publish. The build counter keeps running -- only the packages on the Gitea feed
restart, the same split as the 1.4 -> 3.1 move.

The last 3.1 build of this repo is tagged and kept alive on support/3.1.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-07-26 18:00:19 +08:00

38 lines
1.5 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<Platforms>x64</Platforms>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyName>Hi.Sample</AssemblyName>
<RootNamespace>Sample</RootNamespace>
<Description>
HiAPI samples.
</Description>
<Configurations>Debug;Release</Configurations>
<VersionBuild>0</VersionBuild>
<VersionPrefix>3.2.$(VersionBuild)</VersionPrefix>
<Product>$(AssemblyName)</Product>
<ApplicationIcon>techcoordinate.ico</ApplicationIcon>
<Copyright>Copyright 2025 Tech Coordinate Co., Ltd.</Copyright>
<Company>Tech Coordinate Co., Ltd.</Company>
<Authors>Tech Coordinate Co., Ltd.</Authors>
<OutputPath>bin\$(Platform).$(Configuration)\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<StartupObject>Sample.Mech.DemoTopo1</StartupObject>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)'=='Debug'">
<!-- <ProjectReference Include="..\HiLicense\HiLicense.csproj" /> -->
<ProjectReference Include="..\HiGeom\HiGeom.csproj" />
<ProjectReference Include="..\HiDisp\HiDisp.csproj" />
<ProjectReference Include="..\HiCbtr\HiCbtr.csproj" />
<ProjectReference Include="..\HiMech\HiMech.csproj" />
<ProjectReference Include="..\HiUniNc\HiUniNc.csproj" />
<ProjectReference Include="..\HiNc\HiNc.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)'=='Release'">
<PackageReference Include="HiNc" Version="3.2.*" />
</ItemGroup>
</Project>