microsoft/teams.net

Public

mirrored from https://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v2.0.4

Branches

Tags

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

Clone

HTTPS

Download ZIP

Libraries/Directory.Build.targets

16lines · modecode

1<Project>
2 <Choose>
3 <When Condition="$([System.String]::Copy('$(PackageId)').StartsWith('Microsoft.Teams.Plugins.External.Mcp'))">
4 <PropertyGroup>
5 <!-- package version for `Microsoft.Teams.Plugins.External.Mcp` and `Microsoft.Teams.Plugins.External.McpClient` packages -->
6 <Version>2.0.4-preview.14</Version>
7 </PropertyGroup>
8 </When>
9 <Otherwise>
10 <PropertyGroup>
11 <!-- package version for all other packages -->
12 <Version>2.0.4</Version>
13 </PropertyGroup>
14 </Otherwise>
15 </Choose>
16</Project>
17