Skip to content

Commit d3d331d

Browse files
committed
Remove obsolete LicenceKeyPart attribute
1 parent 7ee2c6f commit d3d331d

28 files changed

+18
-111
lines changed

ExcelReportGenerator/Attributes/ExcelColumnAttribute.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ namespace ExcelReportGenerator.Attributes
66
/// <summary>
77
/// An attribute that allows you to configure excel column output more flexibly
88
/// </summary>
9-
[LicenceKeyPart]
109
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
1110
public class ExcelColumnAttribute : Attribute
1211
{

ExcelReportGenerator/Attributes/ExternalPropertyAttribute.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ namespace ExcelReportGenerator.Attributes
66
[AttributeUsage(AttributeTargets.Property)]
77
internal class ExternalPropertyAttribute : Attribute
88
{
9-
[System.Reflection.Obfuscation(Exclude = true, Feature = "renaming")]
109
public Type Converter { get; set; }
1110
}
1211
}

ExcelReportGenerator/Attributes/LicenceKeyPartAttribute.cs

Lines changed: 0 additions & 21 deletions
This file was deleted.

ExcelReportGenerator/Attributes/NullValueAttribute.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ namespace ExcelReportGenerator.Attributes
66
/// An attribute that allows you to replace null-values to more readable
77
/// </summary>
88
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
9-
[LicenceKeyPart(L = true, R = true)]
109
public class NullValueAttribute : Attribute
1110
{
1211
public NullValueAttribute(object value)

ExcelReportGenerator/Enums/AggregateFunction.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1-
using ExcelReportGenerator.Attributes;
2-
3-
namespace ExcelReportGenerator.Enums
1+
namespace ExcelReportGenerator.Enums
42
{
53
/// <summary>
64
/// Built-in aggregate functions
75
/// </summary>
8-
[LicenceKeyPart(L = true)]
96
public enum AggregateFunction
107
{
118
Sum,

ExcelReportGenerator/Enums/PanelType.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
namespace ExcelReportGenerator.Enums
22
{
3-
[System.Reflection.Obfuscation(Exclude = true, Feature = "renaming")]
43
internal enum PanelType
54
{
65
Vertical,

ExcelReportGenerator/Enums/ShiftType.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
namespace ExcelReportGenerator.Enums
22
{
3-
[System.Reflection.Obfuscation(Exclude = true, Feature = "renaming")]
43
internal enum ShiftType
54
{
65
Cells,

ExcelReportGenerator/Exceptions/InvalidVariableException.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
using System;
2-
using ExcelReportGenerator.Attributes;
32

43
namespace ExcelReportGenerator.Exceptions
54
{
6-
[LicenceKeyPart(L = true)]
75
public class InvalidVariableException : Exception
86
{
97
public InvalidVariableException(string message) : base(message)

ExcelReportGenerator/Exceptions/MethodNotFoundException.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
using System;
2-
using ExcelReportGenerator.Attributes;
32

43
namespace ExcelReportGenerator.Exceptions
54
{
6-
[LicenceKeyPart(U = true)]
75
public class MethodNotFoundException : Exception
86
{
97
public MethodNotFoundException(string message) : base(message)

ExcelReportGenerator/Rendering/EventArgs/DataItemPanelEventArgs.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1-
using ExcelReportGenerator.Attributes;
2-
3-
namespace ExcelReportGenerator.Rendering.EventArgs
1+
namespace ExcelReportGenerator.Rendering.EventArgs
42
{
53
/// <summary>
64
/// Represent arguments of data item panel event
75
/// </summary>
8-
[LicenceKeyPart]
96
public class DataItemPanelEventArgs : PanelEventArgs
107
{
118
/// <summary>

0 commit comments

Comments
 (0)