Hi.Sample/Hi.Sample.csproj
2025-04-09 21:41:13 +08:00

42 lines
1.5 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<Platforms>x64</Platforms>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyName>Hi.Sample</AssemblyName>
<RootNamespace>Sample</RootNamespace>
<Description>
HiAPI samples.
</Description>
<Configurations>Demo;Maintenance</Configurations>
<VersionBuild>0</VersionBuild>
<VersionPrefix>1.4.$(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>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)'=='Maintenance'">
<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)'=='Demo'">
<PackageReference Include="HiNc" Version="1.4.*" />
</ItemGroup>
<PropertyGroup>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<StartupObject>Sample.Machining.DemoUseMachiningProject</StartupObject>
</PropertyGroup>
</Project>