forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAzure.AI.Projects.csproj
More file actions
51 lines (47 loc) · 2.1 KB
/
Azure.AI.Projects.csproj
File metadata and controls
51 lines (47 loc) · 2.1 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>This is the Azure.AI.Projects client library for developing .NET applications with rich experience.</Description>
<AssemblyTitle>Microsoft Azure.AI.Projects client library</AssemblyTitle>
<Version>1.0.0-beta.12</Version>
<PackageTags>Azure.AI.Projects</PackageTags>
<DisableEnhancedAnalysis>true</DisableEnhancedAnalysis>
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
<GenerateAPIListing>true</GenerateAPIListing>
<LangVersion>latest</LangVersion>
<IncludeOperationsSharedSource>true</IncludeOperationsSharedSource>
<IncludeAutorestDependency>false</IncludeAutorestDependency>
</PropertyGroup>
<PropertyGroup>
<NoWarn>
$(NoWarn);
CS1591;
AZC0012;
SA1649;
SA1402;
</NoWarn>
<!--
Suppression of OPENAI001 handles temporary [Experimental] leakage from OpenAI library internals for generated MRWContext.
The longer-term fix is tracked along with:
- https://github.com/Azure/azure-sdk-for-net/issues/51256
- https://github.com/Azure/autorest.csharp/issues/5364
-->
<NoWarn>$(NoWarn);OPENAI001;</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Core" />
<PackageReference Include="Azure.Identity" />
<PackageReference Include="Azure.Storage.Blobs" />
<PackageReference Include="Azure.AI.OpenAI" />
</ItemGroup>
<!-- Shared source from Azure.Core -->
<ItemGroup>
<Compile Include="$(AzureCoreSharedSources)ArrayBufferWriter.cs" LinkBase="Shared" />
<Compile Include="$(AzureCoreSharedSources)AzureKeyCredentialPolicy.cs" LinkBase="Shared" />
<Compile Include="$(AzureCoreSharedSources)AzureResourceProviderNamespaceAttribute.cs" LinkBase="Shared" />
<Compile Include="$(AzureCoreSharedSources)Multipart\MultipartContent.cs" LinkBase="Shared" />
<Compile Include="$(AzureCoreSharedSources)Multipart\MultipartFormDataContent.cs" LinkBase="Shared" />
</ItemGroup>
<ItemGroup>
<None Include="..\tsp-location.yaml" Link="tsp-location.yaml" />
</ItemGroup>
</Project>