Skip to content

Commit

Permalink
Upgrade to .NET 4 and remove old licensing system
Browse files Browse the repository at this point in the history
Upgrade the core of Krypton to .NET 4 : nothing new but the application
will run on the same CLR.
Remove the old licensing code when Krypton was a paid product. It was
the case when we got the source with the suite (sync my repository)
  • Loading branch information
Cocotteseb committed Nov 1, 2015
1 parent 2df61f8 commit ea42f5f
Show file tree
Hide file tree
Showing 125 changed files with 1,740 additions and 7,937 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ComponentFactory.Krypton.Design</RootNamespace>
<AssemblyName>ComponentFactory.Krypton.Design</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ApplicationIcon>Krypton.ico</ApplicationIcon>
<SignAssembly>true</SignAssembly>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
using System.Windows.Forms;
using System.Windows.Forms.Design;
using ComponentFactory.Krypton.Toolkit;
using System.Security;

namespace ComponentFactory.Krypton.Navigator
{
Expand Down Expand Up @@ -555,6 +556,7 @@ public RelativePositionAlign StackAlignment
/// Returns the collection of DesignerActionItem objects contained in the list.
/// </summary>
/// <returns>A DesignerActionItem array that contains the items in this list.</returns>
[SecurityCritical]
public override DesignerActionItemCollection GetSortedActionItems()
{
DesignerActionItemCollection actions = new DesignerActionItemCollection();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
[assembly: StringFreezing]
[assembly: ComVisible(true)]
[assembly: CLSCompliant(true)]
[assembly: AllowPartiallyTrustedCallers()]
//[assembly: AllowPartiallyTrustedCallers()]
[assembly: SecurityRules(SecurityRuleSet.Level2)]
[assembly: Dependency("System", LoadHint.Always)]
[assembly: Dependency("System.Design", LoadHint.Sometimes)]
[assembly: Dependency("System.Drawing", LoadHint.Always)]
Expand Down
Loading

0 comments on commit ea42f5f

Please sign in to comment.