microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
436972edd2a63f773497d45cdc1de6342c7a1c20

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

28lines · 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.Common</PackageId>
10 <PackageDescription>Common modules used to provide utility functionality to the other packages while minimizing external dependencies.</PackageDescription>
11 <PackageProjectUrl>https://microsoft.github.io/teams-ai</PackageProjectUrl>
12 <PackageTags>microsoft;teams;msteams;copilot;ai;common</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 <PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
24 <PackageReference Include="System.Net.Http.Json" Version="9.0.0" />
25 <PackageReference Include="System.Text.Json" Version="9.0.0" />
26 </ItemGroup>
27
28</Project>
29