You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Updated targets and props files to include nuget package icon
* Fixed GraphPresenter after props and targets update
* Updated Graph version in UnitTests app
* Fixed issue with xaml type reflection
* Commented out TreatWarningAsErrors
/// Gets or sets a <see cref="IBaseRequestBuilder"/> to be used to make a request to the graph. The results will be automatically populated to the <see cref="ContentPresenter.Content"/> property. Use a <see cref="ContentPresenter.ContentTemplate"/> to change the presentation of the data.
/// Initializes a new instance of the <see cref="GraphPresenter"/> class.
35
+
/// </summary>
36
+
publicGraphPresenter()
37
+
{
38
+
this.Loaded+=this.GraphPresenter_Loaded;
39
+
}
40
+
41
+
/// <summary>
42
+
/// Gets or sets a <see cref="IBaseRequestBuilder"/> to be used to make a request to the graph. The results will be automatically populated to the <see cref="ContentPresenter.Content"/> property. Use a <see cref="ContentPresenter.ContentTemplate"/> to change the presentation of the data.
// Note: some interfaces from the Graph SDK don't implement IBaseRequestBuilder properly, see https://github.com/microsoftgraph/msgraph-sdk-dotnet/issues/722
75
-
if(RequestBuilder!=null)
76
+
if(this.RequestBuilder!=null)
76
77
{
77
-
varrequest=newBaseRequest(RequestBuilder.RequestUrl,RequestBuilder.Client)// TODO: Do we need separate Options here?
78
+
varrequest=newBaseRequest(this.RequestBuilder.RequestUrl,this.RequestBuilder.Client)// TODO: Do we need separate Options here?
<!-- Code CS8002 is a warning for strong named -> non-strong-named reference. This is valid for platforms other than .NET Framework (and is needed for the UWP targets. -->
32
+
<NoWarn>$(NoWarn);CS8002</NoWarn>
33
+
<!-- For including default @(Page) and @(Resource) items via 'MSBuild.Sdk.Extras' Sdk package. Also provides up to date check and file nesting -->
<WhenCondition="'$(IsTestProject)' != 'true' and '$(SourceLinkEnabled)' != 'false' and '$(IsSampleProject)' != 'true' and '$(IsDesignProject)' != 'true'">
<WhenCondition="'$(TargetFramework)' == 'uap10.0' or '$(TargetFramework)' == 'uap10.0.17763' or '$(TargetFramework)' == 'native' or '$(TargetFramework)' == 'net461'">
4
-
<!-- UAP versions for uap10.0 where TPMV isn't implied -->
11
+
<WhenCondition="!($(TargetFramework.StartsWith('uap10.0')) or '$(TargetFramework)' == 'native' or $(IsSampleProject))">
0 commit comments