mirror of
https://github.com/ShareX/ShareX.git
synced 2025-12-27 23:44:52 +00:00
21 lines
742 B
XML
21 lines
742 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.0" />
|
|
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="10.0.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ShareX.HelpersLib\ShareX.HelpersLib.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="ImageListView">
|
|
<HintPath>..\Libs\ImageListView.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
</Project> |