33 lines
1.1 KiB
XML
33 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
|
<Platforms>x64</Platforms>
|
|
<UseWPF>true</UseWPF>
|
|
<Configurations>Demo;Maintenance</Configurations>
|
|
<AssemblyName>Hi.Sample.Wpf</AssemblyName>
|
|
<RootNamespace>Sample.Wpf</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Hi.Sample\Hi.Sample.csproj" />
|
|
</ItemGroup>
|
|
|
|
<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" />
|
|
<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>
|
|
|
|
</Project>
|