microsoft/teams.net
Publicmirrored from https://github.com/microsoft/teams.netAvailable
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 | |