Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump command serialization changes values that shouldn't change #190

Closed
joaoopereira opened this issue May 25, 2022 · 0 comments · Fixed by #224
Closed

bump command serialization changes values that shouldn't change #190

joaoopereira opened this issue May 25, 2022 · 0 comments · Fixed by #224
Assignees
Labels
bug Something isn't working

Comments

@joaoopereira
Copy link
Collaborator

joaoopereira commented May 25, 2022

before bump

(...)
  "buildSteps": [
    {
      "command" : "dotnet",
      "args": [
        "build",
        "Cmf.Connect.IoT.Driver.Oib.SetupCenter.sln"
      ],
      "workingDirectory" : ".\\SetupCenter\\Cmf.Connect.IoT.Driver.Oib.SetupCenter"
    },
    {
      "command" : "dotnet",
      "args": [
        "build",
        "Cmf.Connect.IoT.Driver.Oib.Traceability.sln"
      ],
      "workingDirectory" : ".\\Traceability\\Cmf.Connect.IoT.Driver.Oib.Traceability"
    }
  ],
(...)

after bump

(...)
  "buildSteps": [
    {
      "args": [
        "build",
        "Cmf.Connect.IoT.Driver.Oib.SetupCenter.sln"
      ],
      "command": "dotnet",
      "workingDirectory": "C:\\Work\\Packages\\Features\\IoT-OIB\\OIBExtensions\\SetupCenter\\Cmf.Connect.IoT.Driver.Oib.SetupCenter"
    },
    {
      "args": [
        "build",
        "Cmf.Connect.IoT.Driver.Oib.Traceability.sln"
      ],
      "command": "dotnet",
      "workingDirectory": "C:\\Work\\Packages\\Features\\IoT-OIB\\OIBExtensions\\Traceability\\Cmf.Connect.IoT.Driver.Oib.Traceability"
    }
  ]

if we look to the workingDirectory, we can see the value changed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant