using the code below as described in the link day numbers are display in the monthview using debug mode but in release they arent appearing? where is this DateTime binding from? is it using System namespace? I use full linker, possibly linker strips it off but I have also used linker settings still doesnt work.
<scheduler:SfScheduler x:Name="Scheduler"
View="Month">
<scheduler:SfScheduler.MonthView>
<scheduler:SchedulerMonthView>
<scheduler:SchedulerMonthView.CellTemplate>
<DataTemplate>
<Grid Background = "MediumPurple">
<Label HorizontalTextAlignment="Center" TextColor="White" Text="{Binding DateTime.Day}"/>
</Grid>
</DataTemplate>
</scheduler:SchedulerMonthView.CellTemplate>
</scheduler:SchedulerMonthView>
</scheduler:SfScheduler.MonthView>
</scheduler:SfScheduler>
<assembly fullname="System.Runtime">
<type fullname="System.DateTime" preserve="all"/>
</assembly>