Skip to content

Commit

Permalink
fix expected compiler output
Browse files Browse the repository at this point in the history
  • Loading branch information
PTKu committed Dec 2, 2024
1 parent 1c19e54 commit ade4753
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ public ClassWithPragmas()
{
}

[Container(Layout.Wrap)]
public ClassWithPragmasNamespace.ComplexType1 myComplexType { get; set; } = new ClassWithPragmasNamespace.ComplexType1();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ public ClassWithArrays()
{
}

[CompilerOmitsAttribute("Onliner")]
public CompilerOmmits.Complex _must_be_omitted_in_onliner { get; set; } = new CompilerOmmits.Complex();
public Byte[] _primitive { get; set; } = new Byte[11];
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,12 @@ public partial class unitsTwinController
public Char myWCHAR { get; set; }
public string mySTRING { get; set; } = string.Empty;
public string myWSTRING { get; set; } = string.Empty;

[ReadOnce()]
public string myWSTRING_readOnce { get; set; } = string.Empty;

[ReadOnly()]
public string myWSTRING_readOnly { get; set; } = string.Empty;

[ReadOnce()]
public ComplexForConfig cReadOnce { get; set; } = new ComplexForConfig();

[ReadOnly()]
public ComplexForConfig cReadOnly { get; set; } = new ComplexForConfig();
public global::Colorss Colorss { get; set; }
public UInt64 Colorsss { get; set; }

[CompilerOmitsAttribute("Onliner")]
public Boolean _must_be_omitted_in_onliner { get; set; }
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ public Extendee2() : base()
{
}

[AXOpen.Data.AxoDataEntityAttribute]
[Container(Layout.Stack)]
[AXSharp.Connector.AddedPropertiesAttribute("AttributeName", "Shared Header")]
public GenericsTests.SomeTypeToBeGeneric SomeData { get; set; } = new GenericsTests.SomeTypeToBeGeneric();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,8 @@ public MembersWithMakeReadOnce()
{
}

[ReadOnce()]
public string makeReadOnceMember { get; set; } = string.Empty;
public string someOtherMember { get; set; } = string.Empty;

[ReadOnce()]
public makereadonce.ComplexMember makeReadComplexMember { get; set; } = new makereadonce.ComplexMember();
public makereadonce.ComplexMember someotherComplexMember { get; set; } = new makereadonce.ComplexMember();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,8 @@ public MembersWithMakeReadOnly()
{
}

[ReadOnly()]
public string makeReadOnceMember { get; set; } = string.Empty;
public string someOtherMember { get; set; } = string.Empty;

[ReadOnly()]
public makereadonly.ComplexMember makeReadComplexMember { get; set; } = new makereadonly.ComplexMember();
public makereadonly.ComplexMember someotherComplexMember { get; set; } = new makereadonly.ComplexMember();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AXSharp.Abstractions" Version="0.20.1-alpha.265" />
<PackageReference Include="AXSharp.Connector" Version="0.20.1-alpha.265" />
<PackageReference Include="AXSharp.Abstractions" Version="0.20.1-alpha.266" />
<PackageReference Include="AXSharp.Connector" Version="0.20.1-alpha.266" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit ade4753

Please sign in to comment.