<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
<OutputType>WinExe</OutputType>
|
<TargetFramework>net8.0-windows7.0</TargetFramework>
|
<Nullable>enable</Nullable>
|
<LangVersion>10.0</LangVersion>
|
<ImplicitUsings>enable</ImplicitUsings>
|
<UseWPF>true</UseWPF>
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
<NoWarn>1701;1702;1573</NoWarn>
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
<NoWarn>1701;1702;1573</NoWarn>
|
</PropertyGroup>
|
|
|
<ItemGroup>
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
|
<PackageReference Include="DynamicExpresso.Core" Version="2.19.3" />
|
<PackageReference Include="gong-wpf-dragdrop" Version="4.0.0" />
|
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.135" />
|
<PackageReference Include="Panuon.WPF.UI" Version="1.3.0.2" />
|
<PackageReference Include="System.Management" Version="10.0.4" />
|
</ItemGroup>
|
|
<ItemGroup>
|
<ProjectReference Include="..\OpenTap\BasicSteps\Tap.Plugins.BasicSteps.csproj" />
|
<ProjectReference Include="..\opentap\Engine\Tap.Engine.csproj" />
|
<ProjectReference Include="..\Plugin\AddInPlugin\AddInPlugin.csproj" />
|
<ProjectReference Include="..\UILib\UILib.csproj" />
|
<ProjectReference Include="..\UtilLib\UtilLib.csproj" />
|
</ItemGroup>
|
|
<ItemGroup>
|
<Reference Include="Keysight.OpenTap.Wpf">
|
<HintPath>Libs\Keysight.OpenTap.Wpf.dll</HintPath>
|
</Reference>
|
</ItemGroup>
|
|
<ItemGroup>
|
<None Update="App.config">
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
</None>
|
</ItemGroup>
|
|
</Project>
|