Skip to content

Build Details

Kristian Virtanen edited this page Oct 17, 2024 · 3 revisions

Build details:

<Project Sdk="Microsoft.NET.Sdk">
  <TargetFramework>net8.0-windows8.0</TargetFramework>
  <OutputType>Library</OutputType>
  <UseWPF>true</UseWPF>
  <UseWindowsForms>true</UseWindowsForms>
  <LangVersion>12.0</LangVersion>
  <PublishSingleFile>true</PublishSingleFile>
  <SelfContained>false</SelfContained>
  <IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
  <TrimUnusedDependencies>true</TrimUnusedDependencies>
  <SupportedOSPlatformVersion>8.0</SupportedOSPlatformVersion>
  <Nullable>enable</Nullable>
</Project>

Usings:

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.IO;
using System.Linq;
using System.Media;
using System.Net.Http;
using System.Runtime.InteropServices;
using System.Threading;
using System.Threading.Tasks;
using System.Timers;
using System.Windows.Forms;
using System.Windows.Media;

Clone this wiki locally