microsoft/teams.net

Public

mirrored fromhttps://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
91427f12753b43af544fcd5f77244b200b039c87

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Libraries/Microsoft.Teams.AI/Microsoft.Teams.AI.csproj

31lines · modecode

1<!-- Copyright (c) Microsoft Corporation. All rights reserved.-->
2<!-- Licensed under the MIT License.-->
3
4<Project Sdk="Microsoft.NET.Sdk">
5
6 <Import Project="..\Directory.Build.props" Condition="'$(Version)' == ''" />
7
8 <PropertyGroup>
9 <PackageId>Microsoft.Teams.AI</PackageId>
10 <PackageDescription>AI tools/utilities.</PackageDescription>
11 <PackageProjectUrl>https://microsoft.github.io/teams-ai</PackageProjectUrl>
12 <PackageTags>microsoft;teams;msteams;copilot;ai</PackageTags>
13 </PropertyGroup>
14
15 <PropertyGroup>
16 <TargetFrameworks>net8.0;net9.0;netstandard2.0;netstandard2.1</TargetFrameworks>
17 <ImplicitUsings>enable</ImplicitUsings>
18 <Nullable>enable</Nullable>
19 <LangVersion>latest</LangVersion>
20 </PropertyGroup>
21
22 <ItemGroup>
23 <ProjectReference Include="..\Microsoft.Teams.Common\Microsoft.Teams.Common.csproj" />
24 </ItemGroup>
25
26 <ItemGroup>
27 <PackageReference Include="JsonSchema.Net" Version="7.3.4" />
28 <PackageReference Include="JsonSchema.Net.Generation" Version="5.0.0" />
29 </ItemGroup>
30
31</Project>
32