microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
5a1c731828fac7c70d50499cc4a9a1e83e934551

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

28lines · modecode

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