-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathIntento.SDK.csproj
49 lines (42 loc) · 2.09 KB
/
Intento.SDK.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyOriginatorKeyFile>intento.snk</AssemblyOriginatorKeyFile>
<Authors>Intento Inc.</Authors>
<Description>An adapter to query Intento API. Intento provides a single API to Cognitive AI services from many vendors.</Description>
<Copyright>Copyright © Intento 2018-2022</Copyright>
<LangVersion>9</LangVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Nullable>disable</Nullable>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://inten.to/</PackageProjectUrl>
<PackageIcon>intento.png</PackageIcon>
<PackageTags>Intento</PackageTags>
<RepositoryUrl>https://github.com/intento/intento-csharp</RepositoryUrl>
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>..\build</OutputPath>
<DocumentationFile>..\build\Intento.SDK.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>..\build\</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
<PackageReference Include="Polly" Version="7.2.3" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<None Remove="Servers.json" />
<EmbeddedResource Include="Servers.json" />
<None Include="intento.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Web" Condition="'$(TargetFramework)' == 'net461'" />
</ItemGroup>
</Project>