18 lines
570 B
XML
18 lines
570 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="OxyPlot.Core" Version="2.2.0" />
|
|
<PackageReference Include="OxyPlot.WindowsForms" Version="2.2.0" />
|
|
<PackageReference Include="OxyPlot.Wpf" Version="2.2.0" />
|
|
<PackageReference Include="PdfSharp.MigraDoc.Standard" Version="1.51.15" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|