Skip to content

Commit

Permalink
Merge pull request PrismLibrary#1934 from tibel/XamlBehaviorsWpf
Browse files Browse the repository at this point in the history
Microsoft.Xaml.Behaviors.Wpf
  • Loading branch information
brianlagunas authored Dec 13, 2019
2 parents 8c7d704 + 3b37dd2 commit f474c28
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 23 deletions.
4 changes: 0 additions & 4 deletions Sandbox/Wpf/HelloWorld/HelloWorld/HelloWorld.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Windows.Interactivity, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\Source\Wpf\System.Windows.Interactivity.dll</HintPath>
</Reference>
<Reference Include="System.Xml" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Core" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ protected override void OnEvent(EventArgs eventArgs)
}
}

public class TestableTriggerAction : System.Windows.Interactivity.TriggerAction<DependencyObject>
public class TestableTriggerAction : Microsoft.Xaml.Behaviors.TriggerAction<DependencyObject>
{
public int ExecutionCount { get; set; }

Expand Down
3 changes: 0 additions & 3 deletions Source/Wpf/Prism.Wpf.Tests/Prism.Wpf.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@
</ItemGroup>
<ItemGroup>
<Reference Include="System.Transactions" />
<Reference Include="System.Windows.Interactivity">
<HintPath>..\System.Windows.Interactivity.dll</HintPath>
</Reference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
<PackageReference Include="Moq" Version="4.13.0" />
<PackageReference Include="xunit" Version="2.4.1" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
using Microsoft.Xaml.Behaviors;
using System;
using System.Windows.Interactivity;

namespace Prism.Interactivity.InteractionRequest
{
/// <summary>
/// Custom event trigger for using with <see cref="IInteractionRequest"/> objects.
/// </summary>
/// <remarks>
/// The standard <see cref="System.Windows.Interactivity.EventTrigger"/> class can be used instead, as long as the 'Raised' event
/// The standard <see cref="Microsoft.Xaml.Behaviors.EventTrigger"/> class can be used instead, as long as the 'Raised' event
/// name is specified.
/// </remarks>
[Obsolete("Please use the new IDialogService for an improved dialog experience.")]
Expand Down
2 changes: 1 addition & 1 deletion Source/Wpf/Prism.Wpf/Interactivity/InvokeCommandAction.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.Xaml.Behaviors;
using System.Reflection;
using System.Windows;
using System.Windows.Input;
using System.Windows.Interactivity;

namespace Prism.Interactivity
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Wpf/Prism.Wpf/Interactivity/PopupWindowAction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
using Prism.Interactivity.InteractionRequest;
using System;
using System.Windows;
using System.Windows.Interactivity;
using CommonServiceLocator;
using Microsoft.Xaml.Behaviors;

namespace Prism.Interactivity
{
Expand Down
12 changes: 1 addition & 11 deletions Source/Wpf/Prism.Wpf/Prism.Wpf.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,7 @@ Prism.Wpf helps you more easily design and build rich, flexible, and easy to mai
</ItemGroup>

<ItemGroup>
<Reference Include="System.Windows.Interactivity">
<HintPath>..\System.Windows.Interactivity.dll</HintPath>
</Reference>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.3" />
<PackageReference Include="CommonServiceLocator" Version="2.0.4" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01" PrivateAssets="All" />
</ItemGroup>
Expand All @@ -44,9 +39,4 @@ Prism.Wpf helps you more easily design and build rich, flexible, and easy to mai
<ProjectReference Include="..\..\Prism\Prism.csproj" />
</ItemGroup>

<ItemGroup>
<Content Include="..\System.Windows.Interactivity.dll" Pack="true" PackagePath="lib\net45" />
<Content Include="..\System.Windows.Interactivity.dll" Pack="true" PackagePath="lib\netcoreapp3.0" />
</ItemGroup>

</Project>
Binary file removed Source/Wpf/System.Windows.Interactivity.dll
Binary file not shown.

0 comments on commit f474c28

Please sign in to comment.