Skip to content

Commit 0b75ef0

Browse files
committed
Fix warnings.
1 parent f929630 commit 0b75ef0

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/CodeFix.ViewModelBaseNotInSource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ public static partial class CodeFix
1010
public static class ViewModelBaseNotInSource
1111
{
1212
private static readonly Settings Settings =
13-
Settings.Default.WithMetadataReferences(x =>
14-
x.Append(Gu.Roslyn.Asserts.MetadataReferences.CreateBinary(@"
13+
Settings.Default.WithMetadataReferences(
14+
x => x.Append(BinaryReference.Compile(@"
1515
namespace N.Core
1616
{
1717
using System;

PropertyChangedAnalyzers.Test/INPC003NotifyForDependentProperty/Valid.ViewModelBaseNotInSource.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ public static partial class Valid
88
{
99
public static class ViewModelBaseNotInSource
1010
{
11-
private static readonly Settings Settings = Settings.Default.WithMetadataReferences(x => x.Append(Gu.Roslyn.Asserts.MetadataReferences.CreateBinary(@"
11+
private static readonly Settings Settings = Settings.Default.WithMetadataReferences(
12+
x => x.Append(
13+
BinaryReference.Compile(@"
1214
namespace N.Core
1315
{
1416
using System;

0 commit comments

Comments
 (0)