-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAssemblyAI.csproj
More file actions
28 lines (23 loc) · 1.08 KB
/
AssemblyAI.csproj
File metadata and controls
28 lines (23 loc) · 1.08 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net4.6.2;net8.0;net9.0</TargetFrameworks>
<NoWarn>$(NoWarn);MEAI001</NoWarn>
</PropertyGroup>
<PropertyGroup Label="Nuget">
<PackageId>tryAGI.AssemblyAI</PackageId>
<Description>Generated C# SDK based on AssemblyAI OpenAPI specification.</Description>
<PackageTags>api;client;sdk;dotnet;swagger;openapi;specification;generated;nswag</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="PolySharp" Version="1.15.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Text.Json" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.AI.Abstractions" Version="10.0.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net4.6.2'">
<PackageReference Include="Microsoft.NET.ILLink.Tasks" Version="9.0.8" />
<Reference Include="System.Net.Http" />
</ItemGroup>
</Project>