|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + <PropertyGroup> |
| 3 | + <TargetFramework>netstandard2.0</TargetFramework> |
| 4 | + <AssemblyName>Microsoft.Azure.Cosmos.AI</AssemblyName> |
| 5 | + <RootNamespace>Microsoft.Azure.Cosmos.AI</RootNamespace> |
| 6 | + <LangVersion>$(LangVersion)</LangVersion> |
| 7 | + <CosmosAIVersion Condition=" '$(IsPreview)' != 'true' ">$(CosmosAIOfficialVersion)</CosmosAIVersion> |
| 8 | + <CosmosAIVersion Condition=" '$(IsPreview)' == 'true' ">$(CosmosAIPreviewVersion)</CosmosAIVersion> |
| 9 | + <CosmosAIVersionSuffix Condition=" '$(IsPreview)' == 'true' ">$(CosmosAIPreviewSuffixVersion)</CosmosAIVersionSuffix> |
| 10 | + <Version Condition=" '$(CosmosAIVersionSuffix)' == '' ">$(CosmosAIVersion)</Version> |
| 11 | + <Version Condition=" '$(CosmosAIVersionSuffix)' != '' ">$(CosmosAIVersion)-$(CosmosAIVersionSuffix)</Version> |
| 12 | + <CurrentDate>$([System.DateTime]::Now.ToString(yyyyMMdd))</CurrentDate> |
| 13 | + <Company>Microsoft Corporation</Company> |
| 14 | + <Authors>Microsoft</Authors> |
| 15 | + <Description>AI extensions library for Azure Cosmos DB for NoSQL. Provides an Azure OpenAI / Foundry-backed embedding provider for automatic vector embedding generation in hybrid and vector search queries. Designed to be extensible for broader AI scenarios including semantic re-ranking, OCR, and model integrations. For more information, refer to https://aka.ms/CosmosDB</Description> |
| 16 | + <Copyright>© Microsoft Corporation. All rights reserved.</Copyright> |
| 17 | + <Title>Microsoft Azure Cosmos DB AI extensions library</Title> |
| 18 | + <PackageId>Microsoft.Azure.Cosmos.AI</PackageId> |
| 19 | + <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
| 20 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 21 | + <PackageProjectUrl>https://github.com/Azure/azure-cosmos-dotnet-v3</PackageProjectUrl> |
| 22 | + <GeneratePackageOnBuild>false</GeneratePackageOnBuild> |
| 23 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 24 | + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
| 25 | + <PackageTags>microsoft;azure;cosmos;cosmosdb;documentdb;nosql;azureofficial;dotnetcore;netcore;netstandard;ai;embedding;vector;openai;semanticranking</PackageTags> |
| 26 | + </PropertyGroup> |
| 27 | + |
| 28 | + <ItemGroup> |
| 29 | + <AdditionalFiles Include="..\..\Microsoft.Azure.Cosmos\src\stylecop.json" Link="stylecop.json" /> |
| 30 | + </ItemGroup> |
| 31 | + |
| 32 | + <!-- Core SDK reference: project ref when building from source, otherwise NuGet pin --> |
| 33 | + <ItemGroup Condition=" '$(SdkProjectRef)' != 'True' AND '$(IsPreview)' != 'True' "> |
| 34 | + <PackageReference Include="Microsoft.Azure.Cosmos" Version="[3.59.0,)" /> |
| 35 | + </ItemGroup> |
| 36 | + |
| 37 | + <ItemGroup Condition=" '$(SdkProjectRef)' != 'True' AND '$(IsPreview)' == 'True' "> |
| 38 | + <PackageReference Include="Microsoft.Azure.Cosmos" Version="3.60.0-preview.0" /> |
| 39 | + </ItemGroup> |
| 40 | + |
| 41 | + <ItemGroup Condition=" '$(SdkProjectRef)' == 'True' "> |
| 42 | + <ProjectReference Include="..\..\Microsoft.Azure.Cosmos\src\Microsoft.Azure.Cosmos.csproj" /> |
| 43 | + </ItemGroup> |
| 44 | + |
| 45 | + <ItemGroup> |
| 46 | + <None Include="..\..\Icon.png" Pack="true" PackagePath=""/> |
| 47 | + </ItemGroup> |
| 48 | + |
| 49 | + <!-- Required by Microsoft.Azure.Cosmos SDK; PrivateAssets=All keeps it off the public dependency graph --> |
| 50 | + <ItemGroup> |
| 51 | + <PackageReference Include="Newtonsoft.Json" Version="10.0.2" NoWarn="NU1903" PrivateAssets="All" /> |
| 52 | + </ItemGroup> |
| 53 | + |
| 54 | + <!-- Azure OpenAI provider dependency --> |
| 55 | + <ItemGroup> |
| 56 | + <PackageReference Include="Azure.AI.OpenAI" Version="2.1.0" /> |
| 57 | + </ItemGroup> |
| 58 | + |
| 59 | + <!-- Analyzers --> |
| 60 | + <ItemGroup> |
| 61 | + <PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" /> |
| 62 | + <PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="16.0.102" PrivateAssets="All" /> |
| 63 | + </ItemGroup> |
| 64 | + |
| 65 | + <!-- Strong-name signing --> |
| 66 | + <PropertyGroup> |
| 67 | + <SigningType>Product</SigningType> |
| 68 | + <SignAssembly>true</SignAssembly> |
| 69 | + <DelaySign>true</DelaySign> |
| 70 | + <AssemblyOriginatorKeyFile>..\..\35MSSharedLib1024.snk</AssemblyOriginatorKeyFile> |
| 71 | + </PropertyGroup> |
| 72 | + |
| 73 | + <PropertyGroup Condition=" '$(SdkProjectRef)' == 'True' "> |
| 74 | + <DefineSdkProjectRefSymbol Condition=" '$(DefineSdkProjectRefSymbol)' == '' ">true</DefineSdkProjectRefSymbol> |
| 75 | + </PropertyGroup> |
| 76 | + |
| 77 | + <PropertyGroup Condition=" '$(DefineSdkProjectRefSymbol)' == 'true' "> |
| 78 | + <DefineConstants>$(DefineConstants);SDKPROJECTREF</DefineConstants> |
| 79 | + </PropertyGroup> |
| 80 | +</Project> |
0 commit comments