36 lines
1.4 KiB
XML
36 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
|
<UseWPF>true</UseWPF>
|
|
<Platforms>x64</Platforms>
|
|
<AssemblyName>Hi.Sample.Wpf</AssemblyName>
|
|
<RootNamespace>Sample</RootNamespace>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<VersionBuild>0</VersionBuild>
|
|
<VersionPrefix>1.4.$(VersionBuild)</VersionPrefix>
|
|
<Product>$(AssemblyName)</Product>
|
|
<OutputPath>bin\$(Platform).$(Configuration)\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<StartupObject>Sample.Machining.DemoRenderingMachiningProcessAndStripPosSelection</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" />
|
|
<ProjectReference Include="..\Hi.Wpf\Hi.Wpf.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="'$(Configuration)'=='Release'">
|
|
<PackageReference Include="HiNc" Version="1.4.*" />
|
|
<PackageReference Include="Hi.Wpf" Version="1.4.*" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|