Files
Orbis-Suite-3.0/OrbisLib Guide Example/WinFormsApp2/WinFormsApp2.csproj
T
2023-02-25 19:28:12 -05:00

25 lines
796 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="sqlite-net-pcl" Version="1.8.116" />
<PackageReference Include="System.Data.SQLite" Version="1.0.117" />
</ItemGroup>
<ItemGroup>
<Reference Include="OrbisLib2">
<HintPath>..\..\..\..\Downloads\OrbisLib2.dll</HintPath>
</Reference>
<Reference Include="SimpleUI">
<HintPath>..\..\..\..\..\..\Program Files (x86)\Orbis Suite\OrbisNeighborHood\SimpleUI.dll</HintPath>
</Reference>
</ItemGroup>
</Project>