microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Cards/Microsoft.Teams.Cards.csproj
27lines · modecode
| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | <Import Project="..\Directory.Build.props" Condition="'$(Version)' == ''" /> |
| 4 | |
| 5 | <PropertyGroup> |
| 6 | <PackageId>Microsoft.Teams.Cards</PackageId> |
| 7 | <PackageDescription>An Adaptive Cards implementation with support for Teams-specific Adaptive Card elements.</PackageDescription> |
| 8 | <PackageProjectUrl>https://microsoft.github.io/teams-ai</PackageProjectUrl> |
| 9 | <PackageTags>microsoft;teams;msteams;copilot;ai;adaptive-cards</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="System.Text.Json" Version="9.0.0" /> |
| 25 | </ItemGroup> |
| 26 | |
| 27 | </Project> |
| 28 | |