greenshot/GreenshotPlugin/GreenshotPlugin.csproj
Robin 6a09345649 Fixed a typo
Fixed #218
Added JPEG (vs JPG) as a format which can be handled
Updated dependencies
2020-07-20 00:00:42 +02:00

26 lines
826 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.3" />
<PackageReference Include="log4net" version="2.0.8" />
<PackageReference Include="Svg" Version="3.1.1" />
<Reference Include="Accessibility" />
<Reference Include="CustomMarshalers" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="log4net-embedded.xml" />
</ItemGroup>
</Project>