ShareX/ShareX/ShareX.csproj

29 lines
1.4 KiB
XML
Raw Normal View History

2024-01-21 12:08:54 +13:00
<Project Sdk="Microsoft.NET.Sdk">
2013-11-03 23:53:49 +13:00
<PropertyGroup>
2024-01-21 12:08:54 +13:00
<TargetFramework>net48</TargetFramework>
2013-11-03 23:53:49 +13:00
<OutputType>WinExe</OutputType>
2013-11-08 04:09:35 +13:00
<ApplicationIcon>ShareX_Icon.ico</ApplicationIcon>
2024-01-21 12:08:54 +13:00
<UseWindowsForms>true</UseWindowsForms>
2013-11-03 23:53:49 +13:00
<ApplicationManifest>app.manifest</ApplicationManifest>
2024-01-22 03:18:24 +13:00
<Description>Screen capture, file sharing and productivity tool</Description>
2017-04-22 03:22:15 +12:00
</PropertyGroup>
2013-11-03 23:53:49 +13:00
<ItemGroup>
<Reference Include="System.Design" />
<Reference Include="System.IO.Compression" />
2014-11-13 10:25:08 +13:00
<Reference Include="System.Web" />
2013-11-03 23:53:49 +13:00
</ItemGroup>
<ItemGroup>
2024-01-21 12:08:54 +13:00
<ProjectReference Include="..\ShareX.HistoryLib\ShareX.HistoryLib.csproj" />
<ProjectReference Include="..\ShareX.ImageEffectsLib\ShareX.ImageEffectsLib.csproj" />
<ProjectReference Include="..\ShareX.IndexerLib\ShareX.IndexerLib.csproj" />
<ProjectReference Include="..\ShareX.MediaLib\ShareX.MediaLib.csproj" />
<ProjectReference Include="..\ShareX.ScreenCaptureLib\ShareX.ScreenCaptureLib.csproj" />
<ProjectReference Include="..\ShareX.HelpersLib\ShareX.HelpersLib.csproj" />
<ProjectReference Include="..\ShareX.UploadersLib\ShareX.UploadersLib.csproj" />
2013-11-03 23:53:49 +13:00
</ItemGroup>
<ItemGroup>
2024-03-10 13:24:40 +13:00
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.22621.3233" />
2024-01-22 03:18:24 +13:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="ZXing.Net" Version="0.16.9" />
</ItemGroup>
2022-07-22 14:42:59 +12:00
</Project>