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
Image

winobjc-tools 0.2.180221-dev-20180516000001

This is a prerelease version of winobjc-tools.

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Microsoft. The inclusion of Microsoft trademark(s), if any, upon this webpage is solely to identify Microsoft goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

Some Checks Are Exempted or Have Failed

Not All Tests Have Passed


Validation Testing Failed


Verification Testing Exemption:

This package requires VS 2017 to be installed.

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install winobjc-tools, run the following command from the command line or from PowerShell:

>

To upgrade winobjc-tools, run the following command from the command line or from PowerShell:

>

To uninstall winobjc-tools, 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 winobjc-tools -y --source="'INTERNAL REPO URL'" --prerelease [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 winobjc-tools -y --source="'INTERNAL REPO URL'" --prerelease
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install winobjc-tools
  win_chocolatey:
    name: winobjc-tools
    version: '0.2.180221-dev-20180516000001'
    source: INTERNAL REPO URL
    state: present
    allow_prerelease: yes

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


chocolatey_package 'winobjc-tools' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.2.180221-dev-20180516000001'
  options  '--prerelease'
end

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


cChocoPackageInstaller winobjc-tools
{
    Name        = "winobjc-tools"
    Version     = "0.2.180221-dev-20180516000001"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

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


package { 'winobjc-tools':
  ensure          => '0.2.180221-dev-20180516000001',
  install_options => ['--prerelease'],
  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.

WARNING

This package is exempt from moderation. While it is likely safe for you, there is more risk involved.

Description

Command Line tools and Visual Studio Extensions for the WinObjC Project. This package includes vsimporter (the tool to convert an existing Xcode Cbjective-C project to a Visual Studio solution), winmd2objc (the tool to generate ObjC projections from Windows Metadata files (winmd)), objc2winmd (the tools to convert ObjC middleware to WinRT Component) as well as the Visual Studio Extensions (requires Visual Studio 2017 or later) for Objective C syntax highlighting and Nuget package creation. See https://github.com/Microsoft/WinObjC for more details.


msvc\vsimporter-templates\frameworks.txt
# WinObjC.Frameworks
Accelerate.lib
Accounts.lib
AddressBook.lib
AddressBookUI.lib
AdSupport.lib
AssetsLibrary.lib
AudioToolbox.lib
AudioUnit.lib
AutoLayout.lib
AVFoundation.lib
AVKit.lib
CloudKit.lib
Contacts.lib
CoreAudio.lib
CoreAudioKit.lib
CoreBluetooth.lib
CoreData.lib
CoreGraphics.lib
CoreImage.lib
CoreLocation.lib
CoreMedia.lib
CoreMIDI.lib
CoreMotion.lib
CoreTelephony.lib
CoreText.lib
CoreVideo.lib
EventKit.lib
EventKitUI.lib
GameController.lib
GameKit.lib
GamePlayKit.lib
GLKit.lib
HealthKit.lib
HomeKit.lib
iAd.lib
ImageIO.lib
LocalAuthentication.lib
MapKit.lib
MediaAccessibility.lib
MediaPlayer.lib
MessageUI.lib
Metal.lib
OpenGLES.lib
QuartzCore.lib
QuickLook.lib
SafariServices.lib
Security.lib
Social.lib
StoreKit.lib
SystemConfiguration.lib
Twitter.lib
UIKit.lib
WebKit.lib
# WinObjC.Frameworks.Core
CFNetwork.lib
CoreFoundation.lib
Foundation.lib
MobileCoreServices.lib
msvc\vsimporter-templates\nuget.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="NuGetizer CI Builds" value="https://ci.appveyor.com/nuget/nugetizer3000" />
  </packageSources>
</configuration>
msvc\vsimporter-templates\packageable.project.json
{
  "dependencies": {
    "WinObjC.Frameworks": "*",
    "WinObjC.Language": "*",
    "WinObjC.Packaging": "*"
  },
  "frameworks": {
    "uap10.0": {
      "imports": "native"
    }
  },
  "runtimes": {
    "win10-arm": {},
    "win10-x86": {},
    "win10-arm-aot": {},
    "win10-x86-aot": {}
  }
}
msvc\vsimporter-templates\project.json
{
  "dependencies": {
    "WinObjC.Frameworks": "*",
    "WinObjC.Language": "*"
  },
  "frameworks": {
    "uap10.0": {
      "imports": "native"
    }
  },
  "runtimes": {
    "win10-arm": {},
    "win10-x86": {},
    "win10-arm-aot": {},
    "win10-x86-aot": {}
  }
}
msvc\vsimporter-templates\WinStore10-Aggregate\Project.vstemplate
 
msvc\vsimporter-templates\WinStore10-Aggregate\Utility.vcxproj
 
msvc\vsimporter-templates\WinStore10-Aggregate\Utility.vcxproj.filters
 
msvc\vsimporter-templates\WinStore10-App\App.vcxproj
 
msvc\vsimporter-templates\WinStore10-App\App.vcxproj.filters
 
msvc\vsimporter-templates\WinStore10-App\App.xaml
 
msvc\vsimporter-templates\WinStore10-App\App.xaml.cpp
 
msvc\vsimporter-templates\WinStore10-App\App.xaml.h
 
msvc\vsimporter-templates\WinStore10-App\default.rd.xml
<?xml version="1.0"?>
<!-- This file contains Runtime Directives used by .NET Native. The defaults here are suitable for most developers. However, you can modify these parameters to modify the behavior of the .NET Native optimizer. Runtime Directives are documented at http://go.microsoft.com/fwlink/?LinkID=391919 To fully enable reflection for App1.MyClass and all of its public/private members <Type Name="App1.MyClass" Dynamic="Required All"/> To enable dynamic creation of the specific instantiation of AppClass<T> over System.Int32 <TypeInstantiation Name="App1.AppClass" Arguments="System.Int32" Activate="Required Public" /> Using the Namespace directive to apply reflection policy to all the types in a particular namespace <Namespace Name="DataClasses.ViewModels" Seralize="All" /> -->
<Directives xmlns="http://schemas.microsoft.com/netfx/2013/01/metadata"><Application>
<!-- An Assembly element with Name="*Application*" applies to all assemblies in the application package. The asterisks are not wildcards. -->
<Assembly Dynamic="Required All" Name="*Application*"/>
<!-- Add your application specific runtime directives here. -->
</Application>
</Directives>
msvc\vsimporter-templates\WinStore10-App\LockScreenLogo.scale-200.png
 
msvc\vsimporter-templates\WinStore10-App\Package-native.appxmanifest
 
msvc\vsimporter-templates\WinStore10-App\pch.cpp
 
msvc\vsimporter-templates\WinStore10-App\pch.h
 
msvc\vsimporter-templates\WinStore10-App\Project.vstemplate
 
msvc\vsimporter-templates\WinStore10-App\SplashScreen.scale-200.png
 
msvc\vsimporter-templates\WinStore10-App\Square150x150Logo.scale-200.png
 
msvc\vsimporter-templates\WinStore10-App\Square44x44Logo.scale-200.png
 
msvc\vsimporter-templates\WinStore10-App\Square44x44Logo.targetsize-24_altform-unplated.png
 
msvc\vsimporter-templates\WinStore10-App\StoreLogo.png
 
msvc\vsimporter-templates\WinStore10-App\TemporaryKey.pfx
 
msvc\vsimporter-templates\WinStore10-App\Wide310x150Logo.scale-200.png
 
msvc\vsimporter-templates\WinStore10-Bundle\Bundle.vcxproj
 
msvc\vsimporter-templates\WinStore10-Bundle\Bundle.vcxproj.filters
 
msvc\vsimporter-templates\WinStore10-Bundle\packageable.project.json
{
  "dependencies": {
    "WinObjC.Packaging": "*"
  },
  "frameworks": {
    "uap10.0": {
      "imports": "native"
    }
  },
  "runtimes": {
    "win10-arm": {},
    "win10-x86": {},
    "win10-arm-aot": {},
    "win10-x86-aot": {}
  }
}
msvc\vsimporter-templates\WinStore10-Bundle\project.json
{
  "dependencies": {
  },
  "frameworks": {
    "uap10.0": {
      "imports": "native"
    }
  },
  "runtimes": {
    "win10-arm": {},
    "win10-x86": {},
    "win10-arm-aot": {},
    "win10-x86-aot": {}
  }
}
msvc\vsimporter-templates\WinStore10-Bundle\Project.vstemplate
 
msvc\vsimporter-templates\WinStore10-Package\Package.Creation.props
 
msvc\vsimporter-templates\WinStore10-Package\Package.Creation.targets
 
msvc\vsimporter-templates\WinStore10-Package\Package.Custom.props
 
msvc\vsimporter-templates\WinStore10-Package\Package.Custom.targets
 
msvc\vsimporter-templates\WinStore10-Package\Package.nuproj
 
msvc\vsimporter-templates\WinStore10-Package\project.json
{
  "dependencies": {
    "WinObjC.Packaging": "*"
  },
  "frameworks": {
    "dotnet": {
      "imports": [
        "netstandard1.0",
        "netstandard1.1",
        "netstandard1.2",
        "netstandard1.3",
        "netstandard1.4",
        "netstandard1.5",
        "netstandard1.6",
        "net20",
        "net35",
        "net40",
        "net45",
        "net452",
        "net461",
        "native",
        "uap",
        "monoandroid",
        "xamarinios10"
      ]
    }
  },
  "runtimes": {
    "win10-arm": {},
    "win10-x86": {},
    "win10-arm-aot": {},
    "win10-x86-aot": {}
  }
}
msvc\vsimporter-templates\WinStore10-Package\Project.vstemplate
 
msvc\vsimporter-templates\WinStore10-Package\Readme.txt
# $projectname$ Readme

Update this readme with a description of your package.
This Readme will automatically be opened when your package is added to a project.
msvc\vsimporter-templates\WinStore10-SharedHeaders\Project.vstemplate
 
msvc\vsimporter-templates\WinStore10-SharedHeaders\SharedHeaders.vcxitems
 
msvc\vsimporter-templates\WinStore10-SharedHeaders\SharedHeaders.vcxitems.filters
 
msvc\vsimporter-templates\WinStore10-StaticLib\Project.vstemplate
 
msvc\vsimporter-templates\WinStore10-StaticLib\StaticLib.vcxproj
 
msvc\vsimporter-templates\WinStore10-StaticLib\StaticLib.vcxproj.filters
 
msvc\vsimporter-templates\WinStore10-WinRT\Module.cpp
 
msvc\vsimporter-templates\WinStore10-WinRT\Project.vstemplate
 
msvc\vsimporter-templates\WinStore10-WinRT\WinRT.vcxproj
 
Readme.txt
# WinObjC.Tools Readme

WinObjC.Tools package provides the commandline (via Chocolatey) entrypoint for the WinObjC project.
This includes the following:
- VSIX
- vsimporter
- winmd2objc
- objc2winmd

See https://github.com/Microsoft/WinObjC for more information
tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';

$packageName = 'WinObjC.tools'
$silentArgs = '' # "/s /S /q /Q /quiet /silent /SILENT /VERYSILENT" # try any of these to get the silent installer #msi is always /quiet
$validExitCodes = @(0) #please insert other valid exit codes here, exit codes for ms http://msdn.microsoft.com/en-us/library/aa368542(VS.85).aspx
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$installPath = & vswhere -latest -property installationPath

if(!$installPath) {
    throw "There was an error finding latest Visual Studio install location. Please make sure Visual Studio (2017 or later) is installed correctly."
}

$vsixInstaller = gci -File -Recurse -Filter vsixinstaller.exe -Path $installPath

Write-Host "Installing Objective-C Visual Studio 2017 Extension ... " -ForegroundColor Blue

$result = Install-Vsix -Installer $vsixInstaller.FullName -InstallFile "$toolsDir\objc-language-services-VS2017.vsix"
if($result -eq 2004) { #2004: Blocking Process (need to close VS)
    throw "A process is blocking the installation of the Visual Studio Extension. Please close all Visual Studio instances and try again."
}

if($result -gt 0 -and $result -ne 1001) { #1001: Already installed
    throw "There was an error installing the Objective-C Visual Studio 2017 Extension. The exit code returned was $result."
}

Write-Host "Downloading Nugetizer Visual Studio 2017 Extension ... " -ForegroundColor Blue
Get-ChocolateyWebFile -PackageName $packageName -FileFullPath "$toolsDir\nugetizer-2017.vsix" -Url 'http://bit.ly/nugetizer-2017'

Write-Host "Installing Nugetizer Visual Studio 2017 Extension ... " -ForegroundColor Blue
$result = Install-Vsix -Installer $vsixInstaller.FullName -InstallFile "$toolsDir\nugetizer-2017.vsix"
if($result -eq 2004) { #2004: Blocking Process (need to close VS)
    throw "A process is blocking the installation of the Visual Studio Extension. Please close all Visual Studio instances and try again."
}

if($result -gt 0 -and $result -ne 1001) { #1001: Already installed
    throw "There was an error installing the Objective-C Visual Studio 2017 Extension. The exit code returned was $result."
}
tools\chocolateyuninstall.ps1
#NOTE: Ple$ErrorActionPreference = 'Stop';

$packageName = 'WinObjC.tools'
$silentArgs = '' # "/s /S /q /Q /quiet /silent /SILENT /VERYSILENT" # try any of these to get the silent installer #msi is always /quiet
$validExitCodes = @(0) #please insert other valid exit codes here, exit codes for ms http://msdn.microsoft.com/en-us/library/aa368542(VS.85).aspx
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$installPath = & vswhere -latest -property installationPath

    if($installPath) {

    $vsixInstaller = gci -File -Recurse -Filter vsixinstaller.exe -Path $installPath

    Write-Host "Uninstalling Objective-C Visual Studio 2017 Extension ... " -ForegroundColor Blue

    $result = & $vsixInstaller.FullName /q /uninstall:VSIX..9c35fff1-f084-44c1-a38e-68c707163aa2
    if($result -eq 2004) { #2004: Blocking Process (need to close VS)
        throw "A process is blocking the uninstallation of the Visual Studio Extension. Please close all Visual Studio instances and try again."
    }

    if($result -gt 0 -and $result -ne 1002) { #1002: Not installed
        throw "There was an error uninstalling the Objective-C Visual Studio 2017 Extension. The exit code returned was $result."
    }

    Write-Host "Uninstalling Nugetizer Visual Studio 2017 Extension ... " -ForegroundColor Blue
    $result =  & $vsixInstaller.FullName /q /uninstall:NuGet.Packaging
    if($result -eq 2004) { #2004: Blocking Process (need to close VS)
        throw "A process is blocking the uninstallation of the Visual Studio Extension. Please close all Visual Studio instances and try again."
    }

    if($result -gt 0 -and $result -ne 1002) { #1002: Not installed
        throw "There was an error uninstalling the Objective-C Visual Studio 2017 Extension. The exit code returned was $result."
    }
}
tools\libclang.dll
md5: 867488B794B5C054A014659B097EE721 | sha1: EF54A422A8A115CA5B9F04313D0CADE497B7A431 | sha256: EFC791367CEB922E153651DAEECA7BFB8E8D328202DC78393F9B15C92390FAEF | sha512: E964A09F974CDD3ACCF3C17F9E579ED69DE8FB849147177873104BD457EF4DDCA1CD739A13684396F579C4A96EC512BEF2510AC96D9E02E489DCCA7042A44CCE
tools\objc-language-services-VS2017.vsix
 
tools\objc-syntax-highlighting.vsix
 
tools\objc2winmd.exe
md5: 641D9904E545F61E8908EE4FE34A5C2A | sha1: 1051417673D285FB7BD912716996C12EDDA71C20 | sha256: 147A4CF0D74903AD0C7392FF2B8E61ABF955C1BD641D8FB4ED37CE878A4E61B8 | sha512: 6D941FB78D1C8C43B634223984EF9BF39F1CFE32DB91D072A1F515EEFAC8262DD6EA7CCF41977F696B0BC8DC0DB5CFC3683AFCA1A1D0D7CBCC486C1B22AD0FD8
tools\vsimporter.exe
md5: 9663D1B597A44EB230D14E0FB56528F1 | sha1: 4194D288E8F11D84365561ABB1AD67EF8F64D71F | sha256: 35F55C88CC484F341E23C441C4FD11A7DE50A6158F64FE4C6FF7C90786E30A0F | sha512: C90EB560D898EF70806AFC726A31044FA3F21B747215D307C71F31DFE233313CF80C2A467FD60718D44CED6C6D1FE22B55186BEA060AEAD54952D7B0682D45F4
tools\VSIX.vsix
 
tools\winmd2objc.exe
md5: 6626FD9189FF4C6C6B9B21658A553B21 | sha1: 5744E3AD4E00E672EABC651A9FA094326947EF4D | sha256: DF8A95DD131CBAD706B4DE7711DD6DBCAA4F16B41A10139D0C5CB32B16E0E0EF | sha512: 0976AFFC3FDC889DB14A63E5A8581A912AC74F5CA60EBCA51E2FB07257DF26438C23BE4F4FE5DF279AF35F6AA11771388F22EC0893CA66D4EEA7A40012C444E7

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
winobjc-tools 0.2.180221-dev-20180516000001 1013 Thursday, May 17, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180501000002 314 Tuesday, May 1, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180427000001 282 Friday, April 27, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180416000002 341 Monday, April 16, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180415000002 303 Sunday, April 15, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180413000002 305 Friday, April 13, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180412000002 306 Thursday, April 12, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180411000001 287 Wednesday, April 11, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180410000002 294 Tuesday, April 10, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180409000001 303 Monday, April 9, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180408000002 281 Sunday, April 8, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180407000002 281 Saturday, April 7, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180406000002 345 Friday, April 6, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180401000004 281 Sunday, April 1, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180331000003 321 Saturday, March 31, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180329000003 286 Thursday, March 29, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180328000003 271 Wednesday, March 28, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180327000004 329 Tuesday, March 27, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180326000004 357 Monday, March 26, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180325000003 320 Sunday, March 25, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180324000003 303 Saturday, March 24, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180323000003 284 Friday, March 23, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180313000004 295 Tuesday, March 13, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180312000008 289 Monday, March 12, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180311000004 290 Sunday, March 11, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180310000004 323 Saturday, March 10, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180309000004 296 Friday, March 9, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180308000005 399 Thursday, March 8, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180307000005 276 Wednesday, March 7, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180306000006 327 Tuesday, March 6, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180305000006 315 Monday, March 5, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180304000005 297 Sunday, March 4, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180303000004 310 Saturday, March 3, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180302000004 281 Friday, March 2, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180301000005 329 Thursday, March 1, 2018 Exempted
winobjc-tools 0.2.171220-dev-20180221000001 296 Wednesday, February 21, 2018 Exempted
winobjc-tools 0.2.171220-dev-20180214145405 309 Thursday, February 15, 2018 Exempted
winobjc-tools 0.2.171219 434 Friday, January 5, 2018 Approved
winobjc-tools 0.2.170610-dev-20171117000001 313 Friday, November 17, 2017 Exempted
winobjc-tools 0.2.170610-dev-20171115235959 381 Thursday, November 16, 2017 Exempted
winobjc-tools 0.2.170610-dev-20171115000004 271 Wednesday, November 15, 2017 Exempted
winobjc-tools 0.2.170610-dev-20171114000003 355 Tuesday, November 14, 2017 Exempted
winobjc-tools 0.2.170610-dev-20171111235959 302 Sunday, November 12, 2017 Exempted
winobjc-tools 0.2.170610-dev-20171110000000 353 Friday, November 10, 2017 Exempted
winobjc-tools 0.2.170610-dev-20171109125730 328 Friday, November 10, 2017 Exempted
winobjc-tools 0.2.170610-dev-20171109000002 334 Thursday, November 9, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170923000000 398 Saturday, September 23, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170922000001 302 Friday, September 22, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170920000000 323 Wednesday, September 20, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170919000001 289 Tuesday, September 19, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170912000003 409 Tuesday, September 12, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170906000003 305 Wednesday, September 6, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170905000002 379 Tuesday, September 5, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170904000002 362 Monday, September 4, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170903000003 325 Sunday, September 3, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170902000002 310 Saturday, September 2, 2017 Approved
winobjc-tools 0.2.170610-dev-20170901000003 360 Friday, September 1, 2017 Approved
winobjc-tools 0.2.170610-dev-20170831000004 323 Thursday, August 31, 2017 Approved
winobjc-tools 0.2.170610-dev-20170829101321 349 Tuesday, August 29, 2017 Approved
winobjc-tools 0.2.170610-dev-20170827000001 351 Sunday, August 27, 2017 Approved
winobjc-tools 0.2.170610-dev-20170822102320 289 Wednesday, August 23, 2017 Approved
winobjc-tools 0.2.170610-dev-20170817000002 257 Wednesday, August 23, 2017 Approved
winobjc-tools 0.2.170610-dev-20170810000001 280 Tuesday, August 22, 2017 Approved
winobjc-tools 0.2.170609 1119 Tuesday, June 13, 2017 Approved
winobjc-tools 0.2.170511-dev-20170612000000 279 Monday, June 12, 2017 Approved
winobjc-tools 0.2.170511-dev-20170609101346 314 Friday, June 9, 2017 Approved
winobjc-tools 0.2.170511-dev-20170608235959 303 Friday, June 9, 2017 Approved
winobjc-tools 0.2.170511-dev-20170531235959 341 Thursday, June 1, 2017 Approved
winobjc-tools 0.2.170511-dev-20170524235959 323 Thursday, May 25, 2017 Approved
winobjc-tools 0.2.170511-dev-20170515235959 336 Tuesday, May 16, 2017 Approved
winobjc-tools 0.2.170511-dev-20170511235959 331 Friday, May 12, 2017 Approved
winobjc-tools 0.2.170510 580 Thursday, May 11, 2017 Approved
winobjc-tools 0.2.170408-dev-20170511000000 310 Thursday, May 11, 2017 Approved
winobjc-tools 0.2.170408-dev-20170510000000 311 Wednesday, May 10, 2017 Approved
winobjc-tools 0.2.170408-dev-20170507235959 289 Monday, May 8, 2017 Approved
winobjc-tools 0.2.170408-dev-20170506235959 307 Sunday, May 7, 2017 Approved
winobjc-tools 0.2.170408-dev-20170505235959 302 Saturday, May 6, 2017 Approved
winobjc-tools 0.2.170408-dev-20170504235959 364 Friday, May 5, 2017 Approved
winobjc-tools 0.2.170408-dev-20170430235959 345 Monday, May 1, 2017 Approved
winobjc-tools 0.2.170408-dev-20170429235959 289 Monday, May 1, 2017 Approved
winobjc-tools 0.2.170408-dev-20170420100137 336 Thursday, April 20, 2017 Approved
winobjc-tools 0.2.170408-dev-20170419100151 310 Wednesday, April 19, 2017 Approved
winobjc-tools 0.2.170408-dev-20170418101204 306 Tuesday, April 18, 2017 Approved
winobjc-tools 0.2.170408-dev-20170416100207 353 Sunday, April 16, 2017 Approved
winobjc-tools 0.2.170408-dev-20170415100153 310 Saturday, April 15, 2017 Approved
winobjc-tools 0.2.170408-dev-20170412191925 350 Thursday, April 13, 2017 Exempted
winobjc-tools 0.2.170407 527 Tuesday, April 11, 2017 Approved
winobjc-tools 0.2.170229-dev-20170410100153 375 Tuesday, April 11, 2017 Exempted
winobjc-tools 0.2.170229-dev-20170404101752 375 Tuesday, April 4, 2017 Exempted
winobjc-tools 0.2.170229-dev-20170331100149 350 Friday, March 31, 2017 Exempted
winobjc-tools 0.2.170229-dev-20170330221649 321 Friday, March 31, 2017 Exempted

Discussion for the winobjc-tools Package

Ground Rules:

  • This discussion is only about winobjc-tools and the winobjc-tools 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 winobjc-tools, 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