|
1 |
| -<Project Sdk="Microsoft.NET.Sdk"> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup>
|
4 | 4 | <TargetFrameworks>net6.0;net7.0</TargetFrameworks>
|
5 |
| - <ImplicitUsings>enable</ImplicitUsings> |
6 |
| - <Nullable>enable</Nullable> |
| 5 | + <ImplicitUsings>enable</ImplicitUsings> |
| 6 | + <Nullable>enable</Nullable> |
| 7 | + <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
| 8 | + <PackageId>CompreFace.NET.Sdk</PackageId> |
| 9 | + <Title>CompreFace NET SDK makes face recognition into your application even easier.</Title> |
| 10 | + <Company>Exadel</Company> |
| 11 | + <Product>Exadel</Product> |
| 12 | + <Description>.Net SDK for CompreFace - free and open-source face recognition system from Exadel</Description> |
| 13 | + <PackageProjectUrl>https://exadel.com/solutions/compreface/</PackageProjectUrl> |
| 14 | + <RepositoryUrl>https://github.com/exadel-inc/compreface-net-sdk</RepositoryUrl> |
| 15 | + <PackageTags>compreface</PackageTags> |
| 16 | + <NeutralLanguage>en</NeutralLanguage> |
| 17 | + <Version>1.0.2</Version> |
| 18 | + <GenerateDocumentationFile>True</GenerateDocumentationFile> |
| 19 | + <PackageIcon>compreface_icon.png</PackageIcon> |
| 20 | + </PropertyGroup> |
| 21 | + |
| 22 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0|AnyCPU'"> |
| 23 | + <DebugType>embedded</DebugType> |
7 | 24 | </PropertyGroup>
|
8 | 25 |
|
9 |
| - <ItemGroup> |
10 |
| - <PackageReference Include="Flurl.Http" Version="4.0.0-pre2" /> |
11 |
| - <PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.0" /> |
12 |
| - <PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" /> |
13 |
| - <PackageReference Include="System.Net.Http" Version="4.3.4" /> |
14 |
| - </ItemGroup> |
| 26 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0|AnyCPU'"> |
| 27 | + <DebugType>embedded</DebugType> |
| 28 | + </PropertyGroup> |
| 29 | + |
| 30 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0|AnyCPU'"> |
| 31 | + <DebugType>embedded</DebugType> |
| 32 | + </PropertyGroup> |
| 33 | + |
| 34 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net7.0|AnyCPU'"> |
| 35 | + <DebugType>embedded</DebugType> |
| 36 | + </PropertyGroup> |
15 | 37 |
|
16 | 38 | <ItemGroup>
|
17 |
| - <None Update="appsettings.json"> |
18 |
| - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
19 |
| - </None> |
| 39 | + <None Include="images\compreface_icon.png"> |
| 40 | + <Pack>True</Pack> |
| 41 | + <PackagePath>\</PackagePath> |
| 42 | + </None> |
20 | 43 | </ItemGroup>
|
21 |
| - |
| 44 | + |
| 45 | + <ItemGroup> |
| 46 | + <PackageReference Include="Flurl.Http" Version="4.0.0-pre2" /> |
| 47 | + <PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.0" /> |
| 48 | + <PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" /> |
| 49 | + <PackageReference Include="System.Net.Http" Version="4.3.4" /> |
| 50 | + </ItemGroup> |
| 51 | + |
| 52 | + <ItemGroup> |
| 53 | + <None Update="appsettings.json"> |
| 54 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 55 | + </None> |
| 56 | + </ItemGroup> |
| 57 | + |
22 | 58 | </Project>
|
0 commit comments