32 lines
889 B
XML
32 lines
889 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<COMReference Include="{215d64d2-031c-33c7-96e3-61794cd1ee61}">
|
|
<WrapperTool>tlbimp</WrapperTool>
|
|
<VersionMinor>0</VersionMinor>
|
|
<VersionMajor>2</VersionMajor>
|
|
<Guid>215d64d2-031c-33c7-96e3-61794cd1ee61</Guid>
|
|
</COMReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\BOB\BOB.csproj" />
|
|
<FrameworkReference Include="Microsoft.WindowsDesktop.App.WindowsForms" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="WindowsFormsIntegration">
|
|
<HintPath>..\..\..\WindowsFormsIntegration.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|