Skip to content

Commit

Permalink
Added signing for ezr² and removed CsealAttribute.
Browse files Browse the repository at this point in the history
  • Loading branch information
Uralstech committed Nov 11, 2024
1 parent ef941d6 commit 30dabe7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 18 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -365,5 +365,4 @@ FodyWeavers.xsd
# --------------------------------------------------

[Ll]ibraries/
[Dd]ocs/offline/_site/
[Dd]ocs/offline/ezrSquared.Offline.Documentation.zip
/NOCOMMIT
3 changes: 3 additions & 0 deletions src/EzrSquared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@

<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<SignAssembly>True</SignAssembly>
<DelaySign>False</DelaySign>
<AssemblyOriginatorKeyFile>D:\Code\csharp\ezrSquared\NOCOMMIT\sgKey.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>

<ItemGroup>
Expand Down
14 changes: 0 additions & 14 deletions src/Runtime/WrapperAttributes/CsealAttribute.cs

This file was deleted.

2 changes: 1 addition & 1 deletion src/Runtime/WrapperAttributes/SharpAutoWrapperAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace EzrSquared.Runtime.WrapperAttributes;

/// <summary>
/// Attribute for C# type members which to be automatically wrapped from C# types into ezr² types.
/// Attribute for C# types and members to be automatically wrapped from C# types into ezr² types.
/// </summary>
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Method | AttributeTargets.Parameter | AttributeTargets.Class | AttributeTargets.Struct, AllowMultiple = false, Inherited = false)]
public class SharpAutoWrapperAttribute : Attribute
Expand Down
2 changes: 1 addition & 1 deletion src/Runtime/WrapperAttributes/SharpDoNotWrapAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace EzrSquared.Runtime.WrapperAttributes;

/// <summary>
/// Attribute for C# type members which should NOT be automatically wrapped from C# types into ezr² types by <see cref="Types.CSharpWrappers.CompatWrappers.EzrSharpCompatibilityObjectInstance"/> and <see cref="Types.CSharpWrappers.CompatWrappers.EzrSharpCompatibilityType"/>.
/// Attribute for C# types and members which should NOT be automatically wrapped from C# types into ezr² types by the interpreter.
/// </summary>
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Struct, AllowMultiple = false, Inherited = false)]
public class SharpDoNotWrapAttribute : Attribute
Expand Down

0 comments on commit 30dabe7

Please sign in to comment.