|
1 |
| -<Project Sdk="Microsoft.NET.Sdk"> |
2 |
| - |
3 |
| - <PropertyGroup> |
4 |
| - <TargetFramework>netstandard2.0</TargetFramework> |
5 |
| - <LangVersion>latest</LangVersion> |
6 |
| - <ImplicitUsings>enable</ImplicitUsings> |
7 |
| - <Nullable>enable</Nullable> |
8 |
| - <PackageId>Microsoft.Teams.AI</PackageId> |
9 |
| - <Product>Microsoft Teams AI SDK</Product> |
10 |
| - <Version>1.5.0</Version> |
11 |
| - <Authors>Microsoft</Authors> |
12 |
| - <Company>Microsoft</Company> |
13 |
| - <Copyright>© Microsoft Corporation. All rights reserved.</Copyright> |
14 |
| - <PackageDescription>SDK focused on building AI based applications for Microsoft Teams.</PackageDescription> |
15 |
| - <PackageReadmeFile>README.md</PackageReadmeFile> |
16 |
| - <RepositoryUrl>https://github.com/microsoft/teams-ai</RepositoryUrl> |
17 |
| - <RepositoryType>git</RepositoryType> |
18 |
| - <GenerateDocumentationFile>True</GenerateDocumentationFile> |
19 |
| - </PropertyGroup> |
20 |
| - |
21 |
| - <PropertyGroup> |
22 |
| - <!-- Rules found at: https://aka.ms/Microsoft-NuGet-Compliance --> |
23 |
| - <PackageProjectUrl>https://github.com/microsoft/teams-ai</PackageProjectUrl> |
24 |
| - <PackageIconUrl>https://github-production-user-asset-6210df.s3.amazonaws.com/14900841/240368384-972a9a1b-679a-4725-bfc0-a1e76151a78a.png</PackageIconUrl> |
25 |
| - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
26 |
| - <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
27 |
| - <PackageTags>bots;ai;teams</PackageTags> |
28 |
| - <!-- |
29 |
| - Suppress a warning about upcoming deprecation of PackageLicenseUrl. When embedding licenses are supported, |
30 |
| - replace PackageLicenseUrl with PackageLicenseExpression. |
31 |
| - --> |
32 |
| - <NoWarn>NU5125</NoWarn> |
33 |
| - <PublishRepositoryUrl>true</PublishRepositoryUrl> |
34 |
| - <IncludeSymbols>true</IncludeSymbols> |
35 |
| - </PropertyGroup> |
36 |
| - |
37 |
| - <ItemGroup> |
38 |
| - <PackageReference Include="AdaptiveCards" Version="3.1.0" /> |
39 |
| - <PackageReference Include="Azure.AI.ContentSafety" Version="1.0.0-beta.1" /> |
40 |
| - <PackageReference Include="Azure.AI.OpenAI" Version="2.0.0-beta.2" /> |
41 |
| - <PackageReference Include="JsonSchema.Net" Version="5.5.1" /> |
42 |
| - <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" /> |
43 |
| - <PackageReference Include="Microsoft.Bot.Builder" Version="4.22.7" /> |
44 |
| - <PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.22.7" /> |
45 |
| - <PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.7" /> |
46 |
| - <PackageReference Include="Microsoft.Identity.Client" Version="4.61.3" /> |
47 |
| - <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> |
48 |
| - <PackageReference Include="Microsoft.ML.Tokenizers" Version="0.22.0-preview.24271.1" /> |
49 |
| - <PackageReference Include="OpenAI" Version="2.0.0-beta.7" /> |
50 |
| - <PackageReference Include="System.Text.Json" Version="8.0.4" /> |
51 |
| - </ItemGroup> |
52 |
| - |
53 |
| - <ItemGroup> |
54 |
| - <None Include="..\README.md" Pack="true" PackagePath="\" /> |
55 |
| - </ItemGroup> |
56 |
| - |
57 |
| -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>netstandard2.0</TargetFramework> |
| 5 | + <LangVersion>latest</LangVersion> |
| 6 | + <ImplicitUsings>enable</ImplicitUsings> |
| 7 | + <Nullable>enable</Nullable> |
| 8 | + <PackageId>Microsoft.Teams.AI</PackageId> |
| 9 | + <Product>Microsoft Teams AI SDK</Product> |
| 10 | + <Version>1.5.0</Version> |
| 11 | + <Authors>Microsoft</Authors> |
| 12 | + <Company>Microsoft</Company> |
| 13 | + <Copyright>© Microsoft Corporation. All rights reserved.</Copyright> |
| 14 | + <PackageDescription>SDK focused on building AI based applications for Microsoft Teams.</PackageDescription> |
| 15 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 16 | + <RepositoryUrl>https://github.com/microsoft/teams-ai</RepositoryUrl> |
| 17 | + <RepositoryType>git</RepositoryType> |
| 18 | + <GenerateDocumentationFile>True</GenerateDocumentationFile> |
| 19 | + </PropertyGroup> |
| 20 | + |
| 21 | + <PropertyGroup> |
| 22 | + <!-- Rules found at: https://aka.ms/Microsoft-NuGet-Compliance --> |
| 23 | + <PackageProjectUrl>https://github.com/microsoft/teams-ai</PackageProjectUrl> |
| 24 | + <PackageIconUrl>https://github-production-user-asset-6210df.s3.amazonaws.com/14900841/240368384-972a9a1b-679a-4725-bfc0-a1e76151a78a.png</PackageIconUrl> |
| 25 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 26 | + <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
| 27 | + <PackageTags>bots;ai;teams</PackageTags> |
| 28 | + <!-- |
| 29 | + Suppress a warning about upcoming deprecation of PackageLicenseUrl. When embedding licenses are supported, |
| 30 | + replace PackageLicenseUrl with PackageLicenseExpression. |
| 31 | + --> |
| 32 | + <NoWarn>NU5125</NoWarn> |
| 33 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 34 | + <IncludeSymbols>true</IncludeSymbols> |
| 35 | + </PropertyGroup> |
| 36 | + |
| 37 | + <ItemGroup> |
| 38 | + <PackageReference Include="AdaptiveCards" Version="3.1.0" /> |
| 39 | + <PackageReference Include="Azure.AI.ContentSafety" Version="1.0.0-beta.1" /> |
| 40 | + <PackageReference Include="Azure.AI.OpenAI" Version="2.0.0-beta.2" /> |
| 41 | + <PackageReference Include="JsonSchema.Net" Version="5.5.1" /> |
| 42 | + <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" /> |
| 43 | + <PackageReference Include="Microsoft.Bot.Builder" Version="4.22.9" /> |
| 44 | + <PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.22.9" /> |
| 45 | + <PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.22.9" /> |
| 46 | + <PackageReference Include="Microsoft.Identity.Client" Version="4.65.0" /> |
| 47 | + <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> |
| 48 | + <PackageReference Include="Microsoft.ML.Tokenizers" Version="0.22.0-preview.24378.1" /> |
| 49 | + <PackageReference Include="OpenAI" Version="2.0.0-beta.13" /> |
| 50 | + <PackageReference Include="System.Text.Json" Version="8.0.4" /> |
| 51 | + </ItemGroup> |
| 52 | + |
| 53 | + <ItemGroup> |
| 54 | + <None Include="..\README.md" Pack="true" PackagePath="\" /> |
| 55 | + </ItemGroup> |
| 56 | + |
| 57 | +</Project> |
0 commit comments