Skip to content

Commit

Permalink
ci: add additional logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dansiegel committed Jun 9, 2023
1 parent 6d114a7 commit 17f825a
Show file tree
Hide file tree
Showing 16 changed files with 21 additions and 27 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@


using System;
using System.Collections.Generic;

namespace Prism.Regions
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
using Prism.Regions.Behaviors;

namespace Prism.Regions
{
/// <summary>
/// When implemented, allows an instance placed in a <see cref="IRegion"/>
/// that uses a <see cref="RegionMemberLifetimeBehavior"/> to indicate
/// that uses a RegionMemberLifetimeBehavior to indicate
/// it should be removed when it transitions from an activated to deactivated state.
/// </summary>
public interface IRegionMemberLifetime
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@


using System;

namespace Prism.Regions
{
/// <summary>
Expand All @@ -20,6 +16,6 @@ public interface IRegionNavigationContentLoader
/// <param name="navigationContext">The context representing the navigation request.</param>
/// <returns>The item to be the target of the navigation request.</returns>
/// <exception cref="InvalidOperationException">when a new item cannot be created for the navigation request.</exception>
object LoadContent(IRegion region, NavigationContext navigationContext);
object LoadContent(IRegion region, INavigationContext navigationContext);
}
}
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

#if HAS_WINUI
using Microsoft.UI.Xaml;
#else
using System.Windows;
#endif

namespace Prism.Regions
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@


using System.Collections.Generic;
using System.Collections.Specialized;

namespace Prism.Regions
Expand Down
18 changes: 18 additions & 0 deletions src/Prism.Regions.Abstractions/Prism.Regions.Abstractions.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net47;net6.0</TargetFrameworks>
<RootNamespace>Prism.Regions</RootNamespace>
<LangVersion>latest</LangVersion>
<ImplicitUsings>true</ImplicitUsings>
</PropertyGroup>

<ItemGroup>
<Using Remove="System.Net.Http" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Prism.Core\Prism.Core.csproj" />
</ItemGroup>

</Project>
1 change: 1 addition & 0 deletions src/Wpf/Prism.Wpf/Prism.Wpf.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Prism.Wpf helps you more easily design and build rich, flexible, and easy to mai

<ItemGroup>
<ProjectReference Include="..\..\Prism.Core\Prism.Core.csproj" />
<ProjectReference Include="..\..\Prism.Regions.Abstractions\Prism.Regions.Abstractions.csproj" />
</ItemGroup>

</Project>

0 comments on commit 17f825a

Please sign in to comment.