File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 8
8
<InvariantGlobalization >false</InvariantGlobalization >
9
9
<RootNamespace >GGroupp.Internal.Timesheet</RootNamespace >
10
10
<AssemblyName >GGroupp.Internal.Timesheet.Bot.Application</AssemblyName >
11
- <Version >1.4.0-preview.3 </Version >
11
+ <Version >1.4.0-preview.4 </Version >
12
12
</PropertyGroup >
13
13
14
14
<PropertyGroup Condition =" '$(RunConfiguration)' == 'Application' " />
19
19
<PackageReference Include =" GGroupp.Infra.Bot.Builder.Command.Stop" Version =" 1.1.1" />
20
20
<PackageReference Include =" GGroupp.Infra.Bot.Builder.Integration.AspNet.Core" Version =" 1.4.0" />
21
21
<PackageReference Include =" GGroupp.Infra.Bot.Builder.Integration.CosmosDb" Version =" 1.0.0" />
22
- <PackageReference Include =" GGroupp.Infra.Bot.Builder.TurnContext.Extensions" Version =" 1.0.3" />
23
22
<PackageReference Include =" GGroupp.Infra.Dataverse.Api" Version =" 2.7.4" />
24
23
<PackageReference Include =" GGroupp.Infra.Http.SocketsHandlerProvider" Version =" 2.2.0" />
25
24
<PackageReference Include =" GGroupp.Internal.Timesheet.FavoriteProjectSet.Get.Api" Version =" 1.4.2" />
Original file line number Diff line number Diff line change 13
13
<ItemGroup >
14
14
<PackageReference Include =" EarlyFuncPack.Core.AsyncPipeline" Version =" 0.1.0" />
15
15
<PackageReference Include =" GGroupp.Infra.Bot.Builder.ChatFlow.Step.Date" Version =" 2.0.0" />
16
+ <PackageReference Include =" GGroupp.Infra.Bot.Builder.TurnContext.Extensions" Version =" 1.1.0" />
16
17
<PackageReference Include =" GGroupp.Internal.Timesheet.TimesheetSet.Get.InOut" Version =" 1.0.1" />
17
18
<PackageReference Include =" PrimeFuncPack.Core.Failure" Version =" 2.0.0" />
18
19
<PackageReference Include =" PrimeFuncPack.Primitives.Pipeline" Version =" 2.0.1" />
Original file line number Diff line number Diff line change @@ -59,11 +59,11 @@ private static IActivity CreateTextActivity(IChatFlowContext<DateTimesheetFlowSt
59
59
StringBuilder BuildTimesheetText ( TimesheetJson timesheet )
60
60
{
61
61
var row = new StringBuilder ( ) . AppendFormat (
62
- "{0,-10}** {1}** " ,
62
+ "{0,-10}{1}" ,
63
63
timesheet . Duration . ToDurationText ( true ) ,
64
- context . EncodeText ( timesheet . ProjectName ) ) ;
64
+ context . EncodeTextWithStyle ( timesheet . ProjectName , BotTextStyle . Bold ) ) ;
65
65
66
- var encodedDescription = context . EncodeText ( timesheet . Description ) ;
66
+ var encodedDescription = context . EncodeTextWithStyle ( timesheet . Description , BotTextStyle . Italic ) ;
67
67
if ( string . IsNullOrEmpty ( encodedDescription ) is false )
68
68
{
69
69
row . AppendBotLine ( ) . Append ( encodedDescription ) ;
You can’t perform that action at this time.
0 commit comments