mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -07:00
Removed a lot of dead code, and remove the old OCR code as we don't even know if it still works.
26 lines
897 B
XML
26 lines
897 B
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<RootNamespace>GreenshotPlugin</RootNamespace>
|
|
<AssemblyName>GreenshotPlugin</AssemblyName>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="Languages\language*.xml">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Dapplo.HttpExtensions.JsonNet" Version="1.0.8" />
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.11.31" />
|
|
<PackageReference Include="log4net" version="2.0.12" />
|
|
<PackageReference Include="Svg" Version="3.2.3" />
|
|
<Reference Include="Accessibility" />
|
|
<Reference Include="CustomMarshalers" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="log4net-embedded.xml" />
|
|
</ItemGroup>
|
|
</Project>
|