The 3.1 line ends at Hi.WinForm 3.1.139 -- tag v3.1.139, part of the aligned hinc-suite/3.1.175 set. master now produces 3.2 and VersionBuild restarts at 0, so the first published 3.2 package is 3.2.1: IncrementPackageID.targets bumps before the build, not after it. The 3.1.154 stamp this replaces was a local increment from a deploy run whose upload step is commented out, so it never reached the feed and nothing depends on it. Fixes for customers pinned to 3.1 come off the support/3.1 branch. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
52 lines
2.1 KiB
XML
52 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<AssemblyName>Hi.WinForm</AssemblyName>
|
|
<RootNamespace>$(AssemblyName)</RootNamespace>
|
|
<Platforms>x64</Platforms>
|
|
<Description>WinForm Display module of HiAPI</Description>
|
|
<VersionBuild>0</VersionBuild>
|
|
<VersionPrefix>3.2.$(VersionBuild)</VersionPrefix>
|
|
<PackageTags>HiAPI</PackageTags>
|
|
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<ApplicationIcon>..\acc\techcoordinate.ico</ApplicationIcon>
|
|
<StartupObject>Hi.WinForm.Program</StartupObject>
|
|
</PropertyGroup>
|
|
<Import Project="..\acc\common_info.props" />
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
|
<IsIgnoreObfuscar>true</IsIgnoreObfuscar>
|
|
<Optimize>true</Optimize>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
</PropertyGroup>
|
|
<!--inner projects dependency-->
|
|
<ItemGroup Condition="'$(Configuration)'=='Debug'">
|
|
<ProjectReference Include="..\HiDisp\HiDisp.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="'$(Configuration)'=='Release'">
|
|
<PackageReference Include="HiDisp" Version="3.2.*" />
|
|
</ItemGroup>
|
|
<Import Project="..\acc\deploy_local_nupkg.targets" Condition="'$(Configuration)'=='Release'" />
|
|
<ItemGroup>
|
|
<Compile Update="Disp\RenderingForm.cs" />
|
|
<Compile Update="Disp\RenderingCanvas.cs" />
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
</Project> |