13 lines
569 B
XML
13 lines
569 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net462;net6.0-windows;net7.0-windows</TargetFrameworks>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<OutputType>WinExe</OutputType>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\OxyPlot.WindowsForms\OxyPlot.WindowsForms.csproj" />
|
|
<ProjectReference Include="..\..\..\OxyPlot\OxyPlot.csproj" />
|
|
<ProjectReference Include="..\..\ExampleLibrary\ExampleLibrary.csproj" />
|
|
</ItemGroup>
|
|
</Project> |