Skip to content

Commit

Permalink
Update API tests FrameworkDisplayName returns wrong value on GitHub
Browse files Browse the repository at this point in the history
FrameworkDisplayName=".NET 6.0" does not reflect the same value on Github
FrameworkDisplayName="" is returned instead
  • Loading branch information
ChrisPulman committed Oct 5, 2022
1 parent 34eede9 commit 2e3b600
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.Winforms")]
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.Wpf")]
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("ReactiveUI.XamForms")]
[assembly: System.Runtime.Versioning.TargetFramework(".NETCoreApp,Version=v6.0", FrameworkDisplayName=".NET 6.0")]
[assembly: System.Runtime.Versioning.TargetFramework(".NETCoreApp,Version=v6.0", FrameworkDisplayName="")]
namespace ReactiveUI
{
public static class AutoPersistHelper
Expand Down Expand Up @@ -1008,4 +1008,4 @@ namespace ReactiveUI
namespace System.Reactive.Disposables
{
public static class DisposableMixins { }
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[assembly: System.Runtime.Versioning.TargetFramework(".NETCoreApp,Version=v6.0", FrameworkDisplayName=".NET 6.0")]
[assembly: System.Runtime.Versioning.TargetFramework(".NETCoreApp,Version=v6.0", FrameworkDisplayName="")]
namespace ReactiveUI.Testing
{
public interface IBuilder { }
Expand Down Expand Up @@ -43,4 +43,4 @@ namespace ReactiveUI.Testing
where T : System.Reactive.Concurrency.IScheduler { }
public static System.IDisposable WithScheduler(System.Reactive.Concurrency.IScheduler scheduler) { }
}
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[assembly: System.Runtime.Versioning.SupportedOSPlatform("Windows7.0")]
[assembly: System.Runtime.Versioning.TargetFramework(".NETCoreApp,Version=v6.0", FrameworkDisplayName=".NET 6.0")]
[assembly: System.Runtime.Versioning.TargetFramework(".NETCoreApp,Version=v6.0", FrameworkDisplayName="")]
[assembly: System.Runtime.Versioning.TargetPlatform("Windows7.0")]
namespace ReactiveUI.Winforms
{
Expand Down Expand Up @@ -116,4 +116,4 @@ namespace System.Reactive.Concurrency
namespace System.Reactive.Linq
{
public static class ControlObservable { }
}
}

0 comments on commit 2e3b600

Please sign in to comment.