-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathLangChain.Providers.Amazon.SageMaker.csproj
More file actions
34 lines (27 loc) · 1.08 KB
/
LangChain.Providers.Amazon.SageMaker.csproj
File metadata and controls
34 lines (27 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
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net4.6.2;netstandard2.0;net8.0;net9.0</TargetFrameworks>
<NoWarn>$(NoWarn);CA2016</NoWarn>
<RootNamespace>LangChain.Providers.Amazon.SageMaker</RootNamespace>
<IsAotCompatible>false</IsAotCompatible>
<IsTrimmable>false</IsTrimmable>
<EnableTrimAnalyzer>false</EnableTrimAnalyzer>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net4.6.2'">
<PackageReference Include="System.Text.Json" Version="10.0.2" />
<Reference Include="System.Net.Http" />
</ItemGroup>
<ItemGroup Label="Usings">
<Using Include="System.Net.Http" />
</ItemGroup>
<PropertyGroup Label="NuGet">
<Description>AWS Bedrock model provider.</Description>
<PackageTags>$(PackageTags);aws;amazon;sagemaker;api</PackageTags>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Abstractions\src\LangChain.Providers.Abstractions.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Text.Json" Version="10.0.2" />
</ItemGroup>
</Project>