Skip to content

Commit

Permalink
The most significant changes include the addition of the `Google.Prot…
Browse files Browse the repository at this point in the history
…obuf` package to several project files and the `Directory.Packages.props` file, as well as the removal of the `MonsterData` and `RealMonsterData` namespaces from the `configuration.g.cs` file in various classes and namespaces.

Here is a detailed list of the changes:

1. The `Google.Protobuf` package was added to the `AXSharp.ixc.csproj`, `AXSharp.ixd.csproj`, and `AXSharp.ixr.csproj` files. This change indicates that the Google Protocol Buffers, a language-neutral, platform-neutral, extensible mechanism for serializing structured data, is now being used in these projects.

2. The `CommandLineParser` package was reformatted in the `AXSharp.ixc.csproj`, `AXSharp.ixd.csproj`, and `AXSharp.ixr.csproj` files. Although the package itself was not modified, the reformatting could have been done for better readability or to adhere to coding standards.

3. Several packages (`LibGit2Sharp`, `Newtonsoft.Json`, `YamlDotNet`, `Microsoft.CodeAnalysis.CSharp`, and `ResXResourceReader.NetStandard`) were reformatted in the `AXSharp.ixd.csproj` and `AXSharp.ixr.csproj` files. Again, no changes were made to the packages themselves.

4. The `Google.Protobuf` package with version `3.22.0` was added to the `Directory.Packages.props` file. This change ensures that all projects in the solution that use this package will use the same version, promoting consistency across the solution.

5. The `MonsterData` namespace was removed from the `configuration.g.cs` file in the `ix_integration_plcTwinController` class and the `Pocos` namespace. This could indicate a refactoring or restructuring of the code.

6. The `RealMonsterData` namespace was removed from the `configuration.g.cs` file in the `integratedTwinController` class and the `Pocos` namespace. Similar to the previous point, this could be due to a refactoring or restructuring of the code.
  • Loading branch information
PTKu committed Apr 29, 2024
1 parent 49e9547 commit 6bf2d12
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 16 deletions.
3 changes: 2 additions & 1 deletion src/AXSharp.compiler/src/ixc/AXSharp.ixc.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CommandLineParser"/>
<PackageReference Include="CommandLineParser" />
<PackageReference Include="Google.Protobuf" />
</ItemGroup>

<ItemGroup>
Expand Down
9 changes: 5 additions & 4 deletions src/AXSharp.compiler/src/ixd/AXSharp.ixd.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="LibGit2Sharp"/>
<PackageReference Include="Newtonsoft.Json"/>
<PackageReference Include="YamlDotNet"/>
<PackageReference Include="CommandLineParser"/>
<PackageReference Include="Google.Protobuf" />
<PackageReference Include="LibGit2Sharp" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="YamlDotNet" />
<PackageReference Include="CommandLineParser" />
</ItemGroup>


Expand Down
11 changes: 6 additions & 5 deletions src/AXSharp.compiler/src/ixr/AXSharp.ixr.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,12 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp"/>
<PackageReference Include="Newtonsoft.Json"/>
<PackageReference Include="ResXResourceReader.NetStandard"/>
<PackageReference Include="YamlDotNet"/>
<PackageReference Include="CommandLineParser"/>
<PackageReference Include="Google.Protobuf" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="ResXResourceReader.NetStandard" />
<PackageReference Include="YamlDotNet" />
<PackageReference Include="CommandLineParser" />
</ItemGroup>


Expand Down
1 change: 1 addition & 0 deletions src/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</GlobalPackageReference>
<PackageVersion Include="Google.Protobuf" Version="3.22.0" />
<PackageVersion Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="7.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Components.Web" Version="7.0.2" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using AXSharp.Connector.ValueTypes;
using System.Collections.Generic;
using AXSharp.Connector.Localizations;
using MonsterData;

public partial class ix_integration_plcTwinController : ITwinController
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

namespace Pocos
{
using MonsterData;

public partial class ix_integration_plcTwinController
{
public all_primitives all_primitives { get; set; } = new all_primitives();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using AXSharp.Connector.ValueTypes;
using System.Collections.Generic;
using AXSharp.Connector.Localizations;
using RealMonsterData;

public partial class integratedTwinController : ITwinController
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

namespace Pocos
{
using RealMonsterData;

public partial class integratedTwinController
{
public MonsterData.Monster Monster { get; set; } = new MonsterData.Monster();
Expand Down

0 comments on commit 6bf2d12

Please sign in to comment.