29 lines
821 B
XML
29 lines
821 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
|
<Platforms>x64</Platforms>
|
|
<Nullable>enable</Nullable>
|
|
<UseWPF>true</UseWPF>
|
|
<Configurations>Demo;Maintenance</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Hi.Sample\Hi.Sample.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(Configuration)'=='Maintenance'">
|
|
<ProjectReference Include="..\HiNc\HiNc.csproj" />
|
|
<ProjectReference Include="..\Hi.Wpf\Hi.Wpf.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="'$(Configuration)'=='Demo'">
|
|
<PackageReference Include="HiNc" Version="1.4.*" />
|
|
<PackageReference Include="Hi.Wpf" Version="1.4.*" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="MachiningProcs\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|