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:

30,998

Downloads of v 0.2.180220:

3,580

Last Update:

21 Feb 2018

Package Maintainer(s):

Software Author(s):

  • Microsoft

Tags:

winobjc-tools;winobjc;vsimporter;winmd2objc;objc2winmd

winobjc-tools

  • 1
  • 2
  • 3

0.2.180220 | Updated: 21 Feb 2018

Downloads:

30,998

Downloads of v 0.2.180220:

3,580

Maintainer(s):

Software Author(s):

  • Microsoft

winobjc-tools 0.2.180220

  • 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 Successful:

No detections found in any package files

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'" [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'" 
$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.180220'
    source: INTERNAL REPO URL
    state: present

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.180220'
end

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


cChocoPackageInstaller winobjc-tools
{
    Name     = "winobjc-tools"
    Version  = "0.2.180220"
    Source   = "INTERNAL REPO URL"
}

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


package { 'winobjc-tools':
  ensure   => '0.2.180220',
  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 by moderator gep13 on 26 Feb 2018.

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: 7A2EF0AA7DC9E445905ED35B0A5CD171 | sha1: 74BC1F79A07AB1698B6FA7684043A2EB003267CB | sha256: 91E895B75B39FEDD8660F604A43DEF48D26A31CB24EBD2DD191897977216B763 | sha512: 875A86B6C82D7C86A0FD26A331FB8C3AA47E0D8867DF714AB6377B12C80FA0FFDCFDB76527B5F7D3C1227D710936C90C93B33EB29024ACE7DB81CCF8191F9669
tools\objc-language-services-VS2017.vsix
 
tools\objc-syntax-highlighting.vsix
 
tools\vsimporter.exe
md5: 2DDCAE5C8D1B865F7B47034B83FD6F51 | sha1: 808041E43DEBF6B81F3B11D9DC8C8C50CA80C150 | sha256: 90E10472C68BF854A21403BCFB65BCD39271B3F089EA81A3FEFC23225B5B684D | sha512: 9C15AC2B87A3F7DB0AE643493FABB4B23DCEC5868EF7D4E3E241DE2D4322EC49BED12DEA2447AF43C74CE66F2172D323E1316CAF9005D886793DBF9D260E3D6F
tools\VSIX.vsix
 

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 877 Thursday, May 17, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180501000002 232 Tuesday, May 1, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180427000001 198 Friday, April 27, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180416000002 284 Monday, April 16, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180415000002 232 Sunday, April 15, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180413000002 213 Friday, April 13, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180412000002 236 Thursday, April 12, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180411000001 243 Wednesday, April 11, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180410000002 247 Tuesday, April 10, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180409000001 246 Monday, April 9, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180408000002 212 Sunday, April 8, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180407000002 208 Saturday, April 7, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180406000002 271 Friday, April 6, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180401000004 227 Sunday, April 1, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180331000003 223 Saturday, March 31, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180329000003 237 Thursday, March 29, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180328000003 222 Wednesday, March 28, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180327000004 255 Tuesday, March 27, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180326000004 285 Monday, March 26, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180325000003 243 Sunday, March 25, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180324000003 248 Saturday, March 24, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180323000003 234 Friday, March 23, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180313000004 245 Tuesday, March 13, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180312000008 249 Monday, March 12, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180311000004 248 Sunday, March 11, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180310000004 263 Saturday, March 10, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180309000004 226 Friday, March 9, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180308000005 307 Thursday, March 8, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180307000005 226 Wednesday, March 7, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180306000006 257 Tuesday, March 6, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180305000006 253 Monday, March 5, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180304000005 250 Sunday, March 4, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180303000004 247 Saturday, March 3, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180302000004 235 Friday, March 2, 2018 Exempted
winobjc-tools 0.2.180221-dev-20180301000005 250 Thursday, March 1, 2018 Exempted
winobjc-tools 0.2.171220-dev-20180221000001 256 Wednesday, February 21, 2018 Exempted
winobjc-tools 0.2.171220-dev-20180214145405 246 Thursday, February 15, 2018 Exempted
winobjc-tools 0.2.171219 347 Friday, January 5, 2018 Approved
winobjc-tools 0.2.170610-dev-20171117000001 263 Friday, November 17, 2017 Exempted
winobjc-tools 0.2.170610-dev-20171115235959 334 Thursday, November 16, 2017 Exempted
winobjc-tools 0.2.170610-dev-20171115000004 215 Wednesday, November 15, 2017 Exempted
winobjc-tools 0.2.170610-dev-20171114000003 256 Tuesday, November 14, 2017 Exempted
winobjc-tools 0.2.170610-dev-20171111235959 250 Sunday, November 12, 2017 Exempted
winobjc-tools 0.2.170610-dev-20171110000000 276 Friday, November 10, 2017 Exempted
winobjc-tools 0.2.170610-dev-20171109125730 275 Friday, November 10, 2017 Exempted
winobjc-tools 0.2.170610-dev-20171109000002 280 Thursday, November 9, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170923000000 344 Saturday, September 23, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170922000001 249 Friday, September 22, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170920000000 253 Wednesday, September 20, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170919000001 241 Tuesday, September 19, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170912000003 314 Tuesday, September 12, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170906000003 258 Wednesday, September 6, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170905000002 307 Tuesday, September 5, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170904000002 289 Monday, September 4, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170903000003 268 Sunday, September 3, 2017 Exempted
winobjc-tools 0.2.170610-dev-20170902000002 260 Saturday, September 2, 2017 Approved
winobjc-tools 0.2.170610-dev-20170901000003 318 Friday, September 1, 2017 Approved
winobjc-tools 0.2.170610-dev-20170831000004 265 Thursday, August 31, 2017 Approved
winobjc-tools 0.2.170610-dev-20170829101321 294 Tuesday, August 29, 2017 Approved
winobjc-tools 0.2.170610-dev-20170827000001 294 Sunday, August 27, 2017 Approved
winobjc-tools 0.2.170610-dev-20170822102320 243 Wednesday, August 23, 2017 Approved
winobjc-tools 0.2.170610-dev-20170817000002 223 Wednesday, August 23, 2017 Approved
winobjc-tools 0.2.170610-dev-20170810000001 232 Tuesday, August 22, 2017 Approved
winobjc-tools 0.2.170609 1080 Tuesday, June 13, 2017 Approved
winobjc-tools 0.2.170511-dev-20170612000000 240 Monday, June 12, 2017 Approved
winobjc-tools 0.2.170511-dev-20170609101346 260 Friday, June 9, 2017 Approved
winobjc-tools 0.2.170511-dev-20170608235959 249 Friday, June 9, 2017 Approved
winobjc-tools 0.2.170511-dev-20170531235959 294 Thursday, June 1, 2017 Approved
winobjc-tools 0.2.170511-dev-20170524235959 281 Thursday, May 25, 2017 Approved
winobjc-tools 0.2.170511-dev-20170515235959 298 Tuesday, May 16, 2017 Approved
winobjc-tools 0.2.170511-dev-20170511235959 284 Friday, May 12, 2017 Approved
winobjc-tools 0.2.170510 537 Thursday, May 11, 2017 Approved
winobjc-tools 0.2.170408-dev-20170511000000 262 Thursday, May 11, 2017 Approved
winobjc-tools 0.2.170408-dev-20170510000000 271 Wednesday, May 10, 2017 Approved
winobjc-tools 0.2.170408-dev-20170507235959 254 Monday, May 8, 2017 Approved
winobjc-tools 0.2.170408-dev-20170506235959 262 Sunday, May 7, 2017 Approved
winobjc-tools 0.2.170408-dev-20170505235959 262 Saturday, May 6, 2017 Approved
winobjc-tools 0.2.170408-dev-20170504235959 300 Friday, May 5, 2017 Approved
winobjc-tools 0.2.170408-dev-20170430235959 303 Monday, May 1, 2017 Approved
winobjc-tools 0.2.170408-dev-20170429235959 242 Monday, May 1, 2017 Approved
winobjc-tools 0.2.170408-dev-20170420100137 292 Thursday, April 20, 2017 Approved
winobjc-tools 0.2.170408-dev-20170419100151 273 Wednesday, April 19, 2017 Approved
winobjc-tools 0.2.170408-dev-20170418101204 262 Tuesday, April 18, 2017 Approved
winobjc-tools 0.2.170408-dev-20170416100207 304 Sunday, April 16, 2017 Approved
winobjc-tools 0.2.170408-dev-20170415100153 266 Saturday, April 15, 2017 Approved
winobjc-tools 0.2.170408-dev-20170412191925 306 Thursday, April 13, 2017 Exempted
winobjc-tools 0.2.170407 481 Tuesday, April 11, 2017 Approved
winobjc-tools 0.2.170229-dev-20170410100153 326 Tuesday, April 11, 2017 Exempted
winobjc-tools 0.2.170229-dev-20170404101752 326 Tuesday, April 4, 2017 Exempted
winobjc-tools 0.2.170229-dev-20170331100149 300 Friday, March 31, 2017 Exempted
winobjc-tools 0.2.170229-dev-20170330221649 275 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