microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
feat/a365-mcp

Branches

Tags

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

Clone

HTTPS

Download ZIP

Libraries/Microsoft.Teams.Common/Microsoft.Teams.Common.csproj

25lines · modecode

1<!-- Copyright (c) Microsoft Corporation. All rights reserved.-->
2<!-- Licensed under the MIT License.-->
3
4<Project Sdk="Microsoft.NET.Sdk">
5 <PropertyGroup>
6 <PackageId>Microsoft.Teams.Common</PackageId>
7 <PackageDescription>Common modules used to provide utility functionality to the other packages while minimizing external dependencies.</PackageDescription>
8 <PackageProjectUrl>https://microsoft.github.io/teams-sdk</PackageProjectUrl>
9 <PackageTags>microsoft;teams;msteams;copilot;ai;common</PackageTags>
10 </PropertyGroup>
11
12 <PropertyGroup>
13 <TargetFramework>net8.0</TargetFramework>
14 <ImplicitUsings>enable</ImplicitUsings>
15 <Nullable>enable</Nullable>
16 <LangVersion>latest</LangVersion>
17 </PropertyGroup>
18
19 <ItemGroup>
20 <PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
21 <PackageReference Include="System.Net.Http.Json" Version="9.0.0" />
22 <PackageReference Include="System.Text.Json" Version="9.0.0" />
23 </ItemGroup>
24
25</Project>
26