16 lines
553 B
XML
16 lines
553 B
XML
|
|
<Project DefaultTargets="Build" Sdk="Microsoft.NET.Sdk">
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFrameworks>net8.0</TargetFrameworks>
|
||
|
|
<OutputType>Exe</OutputType>
|
||
|
|
<AssemblyName>TermSharpExample</AssemblyName>
|
||
|
|
</PropertyGroup>
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="System.Drawing.Common" Version="5.0.3"/>
|
||
|
|
</ItemGroup>
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\xwt\Xwt\Xwt_NET.csproj"/>
|
||
|
|
<ProjectReference Include="..\xwt\Xwt.Gtk\Xwt.Gtk3_NET.csproj"/>
|
||
|
|
<ProjectReference Include="..\TermSharp_NET.csproj"/>
|
||
|
|
</ItemGroup>
|
||
|
|
</Project>
|