The 3.2 line is retracted -- the major version stays fixed for commercial positioning, so 3.1 remains the development line. Version stamp only; no code changed on the way out or back. VersionBuild resumes at 158, where it stood before the detour, instead of restarting from the 143 the feed serves. Everything between was built locally and stamped into real assemblies even though deploy.py deliberately withholds the upload until the API has settled commercially, and re-minting a spent number with different code is the one failure that yields two Hi.WpfPlus.dll claiming the same version. Next upload is 3.1.159; the 143 -> 159 gap on the feed is intended. 3.2.1 was packed locally and never uploaded, so nothing outside this machine saw the 3.2 line at all. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
44 lines
1.8 KiB
XML
44 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<UseWPF>true</UseWPF>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
|
<Platforms>x64</Platforms>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<AssemblyName>Hi.WpfPlus</AssemblyName>
|
|
<RootNamespace>$(AssemblyName)</RootNamespace>
|
|
<Description>
|
|
HiAPI wpf canvas.
|
|
</Description>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<VersionBuild>158</VersionBuild>
|
|
<VersionPrefix>3.1.$(VersionBuild)</VersionPrefix>
|
|
<PackageId>Hi.WpfPlus</PackageId>
|
|
<PackageTags>HiAPI</PackageTags>
|
|
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
|
|
<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>
|
|
<StartupObject>Hi.WpfPlus.Program</StartupObject>
|
|
</PropertyGroup>
|
|
<Import Project="..\acc\common_info.props" />
|
|
<ItemGroup Condition="'$(Configuration)'=='Debug'">
|
|
<ProjectReference Include="..\HiDisp\HiDisp.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="'$(Configuration)'=='Release'">
|
|
<PackageReference Include="HiDisp" Version="3.1.*" />
|
|
</ItemGroup>
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
|
<IsIgnoreObfuscar>true</IsIgnoreObfuscar>
|
|
<Optimize>true</Optimize>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
<Import Project="..\acc\deploy_local_nupkg.targets" Condition="'$(Configuration)'=='Release'" />
|
|
</Project> |