Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
dotnet-version: |
6.0.x
8.0.x
10.0.x

- name: Restore dependencies
run: dotnet restore src/FluentDragDrop.sln
Expand Down
2 changes: 1 addition & 1 deletion README.md
Comment thread
awaescher marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ Those effects are powered by another project called [FluentTransitions](https://

---

Images taken from Unsplash, links to these are located at [/doc/Unsplash](/doc/Unsplash).
Images taken from Unsplash, links to these are located at [/doc/Unsplash](/doc/Unsplash).
2 changes: 1 addition & 1 deletion src/FluentDragDrop.Effects/FluentDragDrop.Effects.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>net6.0-windows;net8.0-windows</TargetFrameworks>
<TargetFrameworks>net6.0-windows;net8.0-windows;net10.0-windows</TargetFrameworks>
<UseWindowsForms>true</UseWindowsForms>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<Description>FluentDrag&amp;Drop is the sexiest Drag&amp;Drop implemtation for WinForms on this planet.
Expand Down
2 changes: 1 addition & 1 deletion src/FluentDragDrop/FluentDragDrop.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>net6.0-windows;net8.0-windows</TargetFrameworks>
<TargetFrameworks>net6.0-windows;net8.0-windows;net10.0-windows</TargetFrameworks>
<UseWindowsForms>true</UseWindowsForms>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<Description>Drag&amp;Drop in WinForms is cumbersome and error-prone. There are multiple events to handle, members to track and properties to set on at least two controls.
Expand Down
2 changes: 2 additions & 0 deletions src/FluentDragDrop/Preview/PreviewForm.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using FluentDragDrop.Effects;
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;

Expand Down Expand Up @@ -133,6 +134,7 @@ protected override void OnLostCapture()

public IPreviewOpacityController PreviewOpacityController { get; private set; }

[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public bool AllowUpdates { get; set; } = true;
}
}
2 changes: 1 addition & 1 deletion src/FluentDragDropExample/FluentDragDropExample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>net6.0-windows;net8.0-windows</TargetFrameworks>
<TargetFrameworks>net6.0-windows;net8.0-windows;net10.0-windows</TargetFrameworks>
<UseWindowsForms>true</UseWindowsForms>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>net6.0-windows;net8.0-windows</TargetFrameworks>
<TargetFrameworks>net6.0-windows;net8.0-windows;net10.0-windows</TargetFrameworks>
<UseWindowsForms>true</UseWindowsForms>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/global.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"sdk": {
"version": "3.1.100",
"rollForward": "latestMajor",
"version": "10.0.100",
"rollForward": "latestMinor",
"allowPrerelease": true
}
}
Loading