-
Notifications
You must be signed in to change notification settings - Fork 5
/
heic2jpg.csproj
30 lines (25 loc) · 1.11 KB
/
heic2jpg.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<PackAsTool>true</PackAsTool>
<ToolCommandName>heic2jpg</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<PackageId>heic2jpg</PackageId>
<Version>2.0.3</Version>
<Authors>Eric Johnson</Authors>
<Product>heic2jpg</Product>
<Description>.NET 6 global tool to convert HEIC image files to JPG.</Description>
<PackageProjectUrl>https://github.com/ejohnson-dotnet/heic2jpg</PackageProjectUrl>
<RepositoryUrl>https://github.com/ejohnson-dotnet/heic2jpg</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Win32.Registry" Version="4.7.0" />
<!--<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.18362.2005" />-->
</ItemGroup>
</Project>