Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

1,926

Downloads of v 6.3.2:

11

Last Update:

18 Mar 2024

Package Maintainer(s):

Software Author(s):

  • Mohamed Hassan

Tags:

code-generation odata charp c# typescript ts dto poco aspnetwebapi webapi

odata2poco commandline

  • 1
  • 2
  • 3

6.3.2 | Updated: 18 Mar 2024

Downloads:

1,926

Downloads of v 6.3.2:

11

Maintainer(s):

Software Author(s):

  • Mohamed Hassan

odata2poco commandline 6.3.2

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install odata2poco commandline, run the following command from the command line or from PowerShell:

>

To upgrade odata2poco commandline, run the following command from the command line or from PowerShell:

>

To uninstall odata2poco commandline, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade odata2poco-commandline -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade odata2poco-commandline -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install odata2poco-commandline
  win_chocolatey:
    name: odata2poco-commandline
    version: '6.3.2'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'odata2poco-commandline' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '6.3.2'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller odata2poco-commandline
{
    Name     = "odata2poco-commandline"
    Version  = "6.3.2"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'odata2poco-commandline':
  ensure   => '6.3.2',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 18 Mar 2024.

Description

o2gen is a CommandLine tool for generating c# and typescript POCO (DTO) classes,interfaces and records from OData feeds with lot of configuration parameters.
Signed by signpath.io from repository 'https://github.com/moh-hassan/odata2poco' commit 'a38b6c4f6d52a6d261a1c4841ec37921badaaf48' (see contained AppVeyorSettings.json file for build settings).


AppVeyorSettings.json
{
  "project": {
    "projectId": 196135,
    "accountId": 39494,
    "accountName": "moh-hassan",
    "builds": [],
    "name": "odata2poco",
    "slug": "odata2poco",
    "repositoryType": "gitHub",
    "repositoryScm": "git",
    "repositoryName": "moh-hassan/odata2poco",
    "isPrivate": false,
    "isGitHubApp": false,
    "skipBranchesWithoutAppveyorYml": false,
    "enableSecureVariablesInPullRequests": false,
    "enableSecureVariablesInPullRequestsFromSameRepo": false,
    "enableDeploymentInPullRequests": false,
    "saveBuildCacheInPullRequests": false,
    "rollingBuilds": false,
    "rollingBuildsDoNotCancelRunningBuilds": false,
    "rollingBuildsOnlyForPullRequests": false,
    "alwaysBuildClosedPullRequests": false,
    "tags": "",
    "securityDescriptor": {
      "accessRightDefinitions": [
        {
          "name": "View",
          "description": "View"
        },
        {
          "name": "RunBuild",
          "description": "Run build"
        },
        {
          "name": "Update",
          "description": "Update settings"
        },
        {
          "name": "Delete",
          "description": "Delete project"
        }
      ],
      "roleAces": [
        {
          "roleId": 66542,
          "name": "Administrator",
          "isAdmin": true,
          "accessRights": [
            {
              "name": "View",
              "allowed": true
            },
            {
              "name": "RunBuild",
              "allowed": true
            },
            {
              "name": "Update",
              "allowed": true
            },
            {
              "name": "Delete",
              "allowed": true
            }
          ]
        },
        {
          "roleId": 66543,
          "name": "User",
          "isAdmin": false,
          "accessRights": [
            {
              "name": "View"
            },
            {
              "name": "RunBuild"
            },
            {
              "name": "Update"
            },
            {
              "name": "Delete"
            }
          ]
        }
      ]
    },
    "disablePushWebhooks": false,
    "disablePullRequestWebhooks": false,
    "created": "2016-05-05T22:51:38.1426657+00:00",
    "updated": "2023-12-07T15:31:20.7612377+00:00"
  },
  "settings": {
    "projectId": 196135,
    "accountId": 39494,
    "accountName": "moh-hassan",
    "builds": [],
    "name": "odata2poco",
    "slug": "odata2poco",
    "versionFormat": "4.3.1-dev.{build}",
    "nextBuildNumber": 430,
    "repositoryType": "gitHub",
    "repositoryScm": "git",
    "repositoryName": "moh-hassan/odata2poco",
    "repositoryBranch": "master",
    "webhookId": "sjaqqu70ex31n8se",
    "webhookUrl": "https://ci.appveyor.com/api/github/webhook?id=sjaqqu70ex31n8se",
    "statusBadgeId": "sjaqqu70ex31n8se",
    "isPrivate": false,
    "isGitHubApp": false,
    "ignoreAppveyorYml": false,
    "customYmlName": "",
    "skipBranchesWithoutAppveyorYml": false,
    "enableSecureVariablesInPullRequests": false,
    "enableSecureVariablesInPullRequestsFromSameRepo": true,
    "enableDeploymentInPullRequests": false,
    "saveBuildCacheInPullRequests": false,
    "rollingBuilds": false,
    "rollingBuildsDoNotCancelRunningBuilds": false,
    "rollingBuildsOnlyForPullRequests": false,
    "alwaysBuildClosedPullRequests": false,
    "configuration": {
      "isBaseConfig": false,
      "doNotIncrementBuildNumberOnPullRequests": true,
      "hotFixScripts": [],
      "initScripts": [],
      "branchesMode": "exclude",
      "includeBranches": [],
      "excludeBranches": [],
      "skipTags": false,
      "skipNonTags": false,
      "skipBranchWithPullRequests": false,
      "skipCommitsFiles": [],
      "onlyCommitsFiles": [],
      "cloneScripts": [],
      "onBuildSuccessScripts": [],
      "onBuildErrorScripts": [],
      "onBuildFinishScripts": [],
      "patchAssemblyInfo": false,
      "assemblyInfoFile": "**\\AssemblyInfo.*",
      "assemblyVersionFormat": "{version}",
      "assemblyFileVersionFormat": "{version}",
      "assemblyInformationalVersionFormat": "{version}",
      "patchDotnetCsproj": false,
      "dotnetCsprojFile": "**\\*.csproj",
      "dotnetCsprojVersionFormat": "{version}",
      "dotnetCsprojVersionPrefixFormat": "{version}",
      "dotnetCsprojPackageVersionFormat": "{version}",
      "dotnetCsprojAssemblyVersionFormat": "{version}",
      "dotnetCsprojFileVersionFormat": "{version}",
      "dotnetCsprojInformationalVersionFormat": "{version}",
      "buildCloud": [],
      "operatingSystem": [
        {
          "value": "Visual Studio 2019"
        }
      ],
      "services": [],
      "stacks": [],
      "shallowClone": false,
      "forceHttpsClone": false,
      "environmentVariables": [
        {
          "name": "NUGET_KEY",
          "value": {
            "isEncrypted": true,
            "value": "https://www.nuget.org/account/apikeys"
          }
        },
        {
          "name": "SIGNPATH_ORGANIZATION_ID",
          "value": {
            "isEncrypted": false,
            "value": "783237d7-f6db-4caa-b64e-a3fc87156006"
          }
        },
        {
          "name": "SIGNPATH_SIGNING_REQUEST_ID",
          "value": {
            "isEncrypted": false,
            "value": "a"
          }
        },
        {
          "name": "SIGNPATH_SIGNING_REQUEST_STATUS",
          "value": {
            "isEncrypted": false,
            "value": "b"
          }
        },
        {
          "name": "SIGNPATH_CI_USER_TOKEN",
          "value": {
            "isEncrypted": true,
            "value": "AGz1tl3ZsMSc0pnmGveeGApR1bAqO04v3FFvijcXjJPd"
          }
        },
        {
          "name": "MYGET_KEY",
          "value": {
            "isEncrypted": true,
            "value": "d4e6c51c-d2d4-4c16-9feb-a72a6ee9405c"
          }
        }
      ],
      "environmentVariablesMatrix": [],
      "installScripts": [],
      "hostsEntries": [],
      "cacheEntries": [],
      "configureNuGetProjectSource": false,
      "configureNuGetAccountSource": false,
      "disableNuGetPublishOnPullRequests": true,
      "disableNuGetPublishForOctopusPackages": false,
      "buildMode": "msbuild",
      "platform": [],
      "configuration": [
        {
          "value": "Release"
        }
      ],
      "msBuildProjectFileName": "OData2Poco.sln",
      "packageWebApplicationProjects": false,
      "packageWebApplicationProjectsXCopy": false,
      "packageWebApplicationProjectsBeanstalk": false,
      "packageWebApplicationProjectsOctopus": false,
      "packageAzureWebJobProjects": false,
      "packageAzureCloudServiceProjects": false,
      "packageNuGetProjects": false,
      "packageNuGetSymbols": false,
      "useSnupkgFormat": false,
      "packageAspNetCoreProjects": false,
      "packageDotnetConsoleProjects": false,
      "includeNuGetReferences": false,
      "msBuildInParallel": false,
      "msBuildVerbosity": "minimal",
      "buildScripts": [],
      "beforeBuildScripts": [],
      "beforePackageScripts": [],
      "afterBuildScripts": [],
      "testMode": "auto",
      "testAssemblies": [],
      "testCategories": [],
      "testCategoriesMatrix": [],
      "testScripts": [],
      "beforeTestScripts": [],
      "afterTestScripts": [],
      "deployMode": "providers",
      "deployments": [],
      "deployScripts": [],
      "beforeDeployScripts": [],
      "afterDeployScripts": [],
      "onImageBakeScripts": [],
      "xamarinRegisterAndroidProduct": false,
      "xamarinRegisterIosProduct": false,
      "matrixFastFinish": false,
      "matrixAllowFailures": [],
      "matrixExclude": [],
      "matrixOnly": [],
      "matrixExcept": [],
      "artifacts": [],
      "notifications": []
    },
    "tags": "",
    "nuGetFeed": {
      "nuGetFeedId": 201612,
      "id": "odata2poco-h223qnxnkhi8",
      "name": "Project odata2poco",
      "accountId": 39494,
      "projectId": 196135,
      "isPrivateProject": false,
      "publishingEnabled": false,
      "created": "2016-05-05T22:51:39.7677244+00:00"
    },
    "securityDescriptor": {
      "accessRightDefinitions": [
        {
          "name": "View",
          "description": "View"
        },
        {
          "name": "RunBuild",
          "description": "Run build"
        },
        {
          "name": "Update",
          "description": "Update settings"
        },
        {
          "name": "Delete",
          "description": "Delete project"
        }
      ],
      "roleAces": [
        {
          "roleId": 66542,
          "name": "Administrator",
          "isAdmin": true,
          "accessRights": [
            {
              "name": "View",
              "allowed": true
            },
            {
              "name": "RunBuild",
              "allowed": true
            },
            {
              "name": "Update",
              "allowed": true
            },
            {
              "name": "Delete",
              "allowed": true
            }
          ]
        },
        {
          "roleId": 66543,
          "name": "User",
          "isAdmin": false,
          "accessRights": [
            {
              "name": "View"
            },
            {
              "name": "RunBuild"
            },
            {
              "name": "Update"
            },
            {
              "name": "Delete"
            }
          ]
        }
      ]
    },
    "disablePushWebhooks": false,
    "disablePullRequestWebhooks": false,
    "created": "2016-05-05T22:51:38.1426657+00:00",
    "updated": "2023-12-07T15:31:20.7612377+00:00"
  },
  "images": [
    {
      "buildWorkerImageId": 1752,
      "name": "LinuxCloud",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 2249,
      "name": "macOS-BigSur",
      "buildCloudName": "macos-pro",
      "osType": "MacOS"
    },
    {
      "buildWorkerImageId": 2432,
      "name": "macOS-Catalina",
      "buildCloudName": "macos-eol",
      "osType": "MacOS"
    },
    {
      "buildWorkerImageId": 2431,
      "name": "macOS-Monterey",
      "buildCloudName": "macos-pro",
      "osType": "MacOS"
    },
    {
      "buildWorkerImageId": 2957,
      "name": "macOS-Sonoma",
      "buildCloudName": "macos-pro",
      "osType": "MacOS"
    },
    {
      "buildWorkerImageId": 2985,
      "name": "macOS-Ventura",
      "buildCloudName": "macos-pro",
      "osType": "MacOS"
    },
    {
      "buildWorkerImageId": 1355,
      "name": "Previous macOS",
      "buildCloudName": "macos-pro",
      "osType": "MacOS"
    },
    {
      "buildWorkerImageId": 1354,
      "name": "Previous macOS-Mojave",
      "buildCloudName": "macos-eol",
      "osType": "MacOS"
    },
    {
      "buildWorkerImageId": 1642,
      "name": "Previous Ubuntu2004",
      "buildCloudName": "pro-ubuntu",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 3002,
      "name": "Previous Ubuntu2204",
      "buildCloudName": "pro-ubuntu",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 2388,
      "name": "Previous Visual Studio 2022",
      "buildCloudName": "pro-vs2019",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 1641,
      "name": "Ubuntu2004",
      "buildCloudName": "pro-ubuntu",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 2564,
      "name": "Ubuntu2004-arm_hidden",
      "buildCloudName": "aws-us-east-1",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 2893,
      "name": "Ubuntu2204",
      "buildCloudName": "pro-ubuntu",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 2335,
      "name": "Visual Studio 2022",
      "buildCloudName": "pro-vs2019;pro-backup",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 1751,
      "name": "Windows",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 886,
      "name": "Visual Studio 2019",
      "buildCloudName": "pro-vs2019;pro-backup",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 362,
      "name": "Visual Studio 2017",
      "buildCloudName": "pro-vs2017",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 34,
      "name": "Visual Studio 2015",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 38,
      "name": "Visual Studio 2013",
      "buildCloudName": "pro-vs2013",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 964,
      "name": "Previous Visual Studio 2019",
      "buildCloudName": "pro-vs2019",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 368,
      "name": "Previous Visual Studio 2017",
      "buildCloudName": "pro-vs2017",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 36,
      "name": "Previous Visual Studio 2015",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 39,
      "name": "Previous Visual Studio 2013",
      "buildCloudName": "pro-ubuntu",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 639,
      "name": "Ubuntu",
      "buildCloudName": "pro-ubuntu",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 649,
      "name": "Ubuntu1804",
      "buildCloudName": "pro-ubuntu",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 650,
      "name": "Ubuntu1604",
      "buildCloudName": "pro-ubuntu",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 640,
      "name": "Previous Ubuntu",
      "buildCloudName": "pro-ubuntu",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 674,
      "name": "Previous Ubuntu1804",
      "buildCloudName": "pro-ubuntu",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 673,
      "name": "Previous Ubuntu1604",
      "buildCloudName": "pro-ubuntu",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 1217,
      "name": "macOS",
      "buildCloudName": "macos-pro",
      "osType": "MacOS"
    },
    {
      "buildWorkerImageId": 1218,
      "name": "macOS-Mojave",
      "buildCloudName": "macos-eol",
      "osType": "MacOS"
    },
    {
      "buildWorkerImageId": 735,
      "name": "Visual Studio 2019 Preview",
      "buildCloudName": "pro-vs2019;pro-backup",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 40,
      "name": "WMF 5",
      "buildCloudName": "gce",
      "osType": "Windows"
    }
  ],
  "buildClouds": [
    {
      "buildCloudId": 990,
      "name": "DESKTOP-2J8G91T"
    },
    {
      "buildCloudId": 991,
      "name": "DESKTOP-2J8G91T Docker"
    }
  ],
  "defaultImageName": "Visual Studio 2015"
}
tools\license.txt
The MIT License (MIT)

Copyright (c) 2016-2023 Mohamed Hassan

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
tools\o2pgen.exe
md5: D851AB2AC189C9A8BEDFD69A827F837B | sha1: 29AC7E66D3ABC1F6BE4699D169A9AAC1511B781D | sha256: 750E5E68BACB2B68BFF3FF029A4B5070253B5E026567229CFDC2F2AFD703E1A4 | sha512: A64B543F7C1536530EB7A0C6096467A2D32D45E56AB020039FCC317136D53D746C9540D113144588023B2961E5988949E3720E6B6FF08AE1F537D5942F08568E
tools\o2pgen.exe.sha256.txt
E1B400B05728E3F0F807E10FCD16FC4C467AC6BA29DE6703AD1596543BF04305
tools\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

This package is created by the OData2Poco Project itself at: https://github.com/moh-hassan/odata2poco. 
Any binaries will be identical to other package types published by the project, in particular 
the odata2poco-commandline NuGet packages and its contents: O2pgen.exe.

The checksum 256 of o2pgen.exe is embeded in the package.

You can use one of the following methods to obtain the SHA256 checksum :
   - Use powershell function 'Get-FileHash'
   - Use Chocolatey utility 'checksum.exe'    
 
.signature.p7s
 

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
odata2poco commandline 6.2.0 30 Thursday, October 26, 2023 Approved
odata2poco commandline 6.1.0 29 Saturday, September 9, 2023 Approved
odata2poco commandline 6.0.0.20230703 48 Monday, July 3, 2023 Approved
odata2poco commandline 6.0.0 37 Wednesday, June 28, 2023 Approved
odata2poco commandline 5.0.1 116 Wednesday, October 5, 2022 Approved
odata2poco commandline 4.3.1.20220812 59 Friday, August 12, 2022 Approved
odata2poco commandline 4.1.0 142 Monday, November 15, 2021 Approved
odata2poco commandline (Install) 4.0.0 142 Monday, November 1, 2021 Approved
odata2poco-commandline 3.1.0 557 Friday, March 8, 2019 Approved
odata2poco-commandline 3.0.3 189 Monday, February 25, 2019 Approved
OData2Poco-CommandLine (Install) 2.2.1 538 Wednesday, April 26, 2017 Approved

  • .NETFramework 4.7.2

    • No dependencies.
Discussion for the odata2poco commandline Package

Ground Rules:

  • This discussion is only about odata2poco commandline and the odata2poco commandline package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or odata2poco commandline, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus