Last active
August 29, 2015 14:08
-
-
Save mwrock/481048e7de5074e38b7f to your computer and use it in GitHub Desktop.
nuspec in powershell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@{ | |
version = '11.0.1' | |
authors = @('Microsoft') | |
owners = @('Matt Wrock') | |
projectUrl = 'http://www.microsoft.com/visualstudio/11/en-us' | |
licenseUrl = 'http://msdn.microsoft.com/en-US/cc300389.aspx' | |
iconUrl = 'https://github.com/mwrock/Chocolatey-Packages/raw/master/VisualStudio2012Ultimate/vs.png' | |
id = 'VisualStudio2012Professional' | |
title = 'Visual Studio 2012 - Professional' | |
requireLicenseAcceptance = $false | |
description = @" | |
This silently installs the 90 day trial (http://msdn.microsoft.com/en-us/library/gg442061.aspx) of Visual Studio Professional along with the Microsoft .Net 4.5 Framework SDK. All Optional Features such as Blend, Sql Dev tools, Web dev tools, etc. are not installed. However, from the "Programs and Features" menu in Windows you can right click Microsoft Visual Studio Ultimate and choose "Change" and then add the features you want. This may take quite a while to install so grab your Lord of the Rings Battle Axe and re-enact the battle of Isengard while you wait! | |
"@ | |
summary = @" | |
Professional developers need professional tools. Visual Studio Professional 2012 is a unified development experience that enables developers to create multi-tier applications across the web, cloud, and devices. | |
"@ | |
# a tag for each word | |
tags = "Microsoft Visual Studio 2012 Professional IDE ALM".Split(" ") | |
dependencies = @( @{ id="DotNet4.5" } ) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment