-
Notifications
You must be signed in to change notification settings - Fork 909
Migrate BotBuilder SDK to Teams SDK bot-adaptive-card-actions sample #1844
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
YugalPradhan31
wants to merge
24
commits into
main
Choose a base branch
from
v-ypradhan/Teams_SDK_Migration_6
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
8bd591e
Updated bot-suggested-actions csharp sample.
YugalPradhan31 c0fbebb
Update sample csharp bot-adaptive-card-actions
YugalPradhan31 ab25a03
Updated csharp sample bot-configuration-app-auth
YugalPradhan31 2b885ab
updated build pipeline
YugalPradhan31 db873cb
Fixed Comments
YugalPradhan31 a6ae4d8
Updated Readme to prioritize devtunnels.
YugalPradhan31 7240a64
updated bot-suggested-actions as per comments.
YugalPradhan31 9e33cc7
Updated bot-configuration-app-auth to fix comments.
YugalPradhan31 7bc312e
Updated readme and port.
YugalPradhan31 2cccd7e
Removed BotType
YugalPradhan31 fbd589a
Merge remote-tracking branch 'origin/main' into v-ypradhan/Teams_SDK_…
Harikrishnan-MSFT 9052505
shifting bot-suggested-actions and bot-configuration-app-auth to othe…
YugalPradhan31 7bd5790
Removed bot-adaptive-card-actions-csharp.yml file.
YugalPradhan31 1e4b7ad
added bot-adaptive-card-actions-csharp.yml
YugalPradhan31 51addd1
Updated Readme text
YugalPradhan31 50bf2de
Added User File
YugalPradhan31 279d621
Updated Soluction file
YugalPradhan31 78ace60
updated code to use Cards API
YugalPradhan31 352c082
updated AdaptiveCardActions.slnLaunch.user
YugalPradhan31 0030343
Deleted User file.
YugalPradhan31 ded9cb7
Revert "Deleted User file."
YugalPradhan31 5c1fe97
Added launchSettings.json in .gitignore and added launchSettings.exam…
YugalPradhan31 322a0f6
Fixed Comments
YugalPradhan31 e4fc112
Added launchSettings.json in root level .gitignore
YugalPradhan31 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 0 additions & 37 deletions
37
samples/bot-adaptive-card-actions/csharp/AdaptiveCardActions.sln
This file was deleted.
Oops, something went wrong.
41 changes: 31 additions & 10 deletions
41
samples/bot-adaptive-card-actions/csharp/AdaptiveCardActions.slnLaunch.user
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
samples/bot-adaptive-card-actions/csharp/AdaptiveCardActions.slnx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| <Solution> | ||
| <Folder Name="/Solution Items/"> | ||
| <File Path="AdaptiveCardActions.slnLaunch.user" /> | ||
| </Folder> | ||
| <Project Path="AdaptiveCardActions/AdaptiveCardActions.csproj" /> | ||
| <Project Path="M365Agent/M365Agent.atkproj" Type="a9e3f50b-275e-4af7-adce-8be12d41e305"> | ||
| <Deploy /> | ||
| </Project> | ||
| </Solution> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 0 additions & 50 deletions
50
samples/bot-adaptive-card-actions/csharp/AdaptiveCardActions/AdapterWithErrorHandler.cs
This file was deleted.
Oops, something went wrong.
32 changes: 17 additions & 15 deletions
32
samples/bot-adaptive-card-actions/csharp/AdaptiveCardActions/AdaptiveCardActions.csproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,25 +1,27 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk.Web"> | ||
| <Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
|
||
| <PropertyGroup> | ||
| <TargetFramework>net6.0</TargetFramework> | ||
| <LangVersion>latest</LangVersion> | ||
| <TargetFramework>net10.0</TargetFramework> | ||
| <ImplicitUsings>enable</ImplicitUsings> | ||
| <Nullable>enable</Nullable> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup> | ||
| <PackageReference Include="AdaptiveCards.Rendering.Html" Version="2.7.3" /> | ||
| <PackageReference Include="AdaptiveCards.Templating" Version="1.3.2" /> | ||
| <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.11" /> | ||
| <PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.18.1" /> | ||
| <PackageReference Include="Microsoft.Teams.Plugins.AspNetCore" Version="2.0.*" /> | ||
| </ItemGroup> | ||
|
|
||
| <!-- Exclude local settings from publish --> | ||
| <ItemGroup> | ||
| <Content Update="appsettings.json"> | ||
| <CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
| <Content Remove="appsettings.Development.json" /> | ||
| <Content Include="appsettings.Development.json"> | ||
| <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
| <CopyToPublishDirectory>None</CopyToPublishDirectory> | ||
| </Content> | ||
| <Content Remove="appsettings.Playground.json" /> | ||
| <Content Include="appsettings.Playground.json"> | ||
| <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
| <CopyToPublishDirectory>None</CopyToPublishDirectory> | ||
| </Content> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup> | ||
| <Folder Include="Images\" /> | ||
| </ItemGroup> | ||
|
|
||
| </Project> | ||
|
|
||
| </Project> | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove, use defaults
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed.