Sign in
|
Join
Serge van den Oever [Macaw]
Thoughts on SharePoint and PowerShell
This Blog
Home
Contact
About
Syndication
RSS
Atom
Comments RSS
Search
Go
Navigation
Home
Blogs
News
Disclaimer:
Welcome to my personal blog. All the information in this blog is my personal view, and not necessarily the view of Macaw.
Macaw Bloggers
Mirjam van Olst [Macaw]
Sander de Koning [Macaw]
Edwin Vriethof [Macaw]
Vincent Hoogendoorn [Macaw]
SharePoint Bloggers
SharePoint Team
Bil Simser
SharePoint Developer Documentation Team
Tags
.NET
ASP.NET
Azure
DualLayout
Flash/Flex
Google
Guidance
LightSwitch
MacawSolutionsFactory
NAnt
Nokia770
NuGet
Other Stuff
PowerShell
SharePoint
SharePoint.DesignFactory.ContentFiles
SoftwareFactories
SolutionsFactory
SolutionsFactory-Usage
SPDevExplorer
SQL Server
Visual Studio
VSX
Windows Forms
WinFX
Recent Posts
PowerShell: get your external IP address
JSON Debugger visualizer in Visual Studio 2012
Visual Studio 2012 LightSwitch intellisense not working with Resharper 7
SharePoint: UI for ordering list items
Icons from CDN (content delivery network)
Archives
March 2013 (2)
January 2013 (1)
December 2012 (3)
July 2012 (3)
June 2012 (1)
May 2012 (4)
February 2012 (1)
July 2011 (1)
June 2011 (1)
May 2011 (6)
March 2011 (1)
February 2011 (2)
October 2010 (3)
August 2010 (2)
July 2010 (4)
June 2010 (1)
May 2010 (2)
February 2010 (1)
January 2010 (1)
December 2009 (2)
November 2009 (2)
October 2009 (8)
July 2009 (1)
June 2009 (3)
May 2009 (5)
April 2009 (4)
March 2009 (1)
February 2009 (2)
January 2009 (2)
December 2008 (3)
October 2008 (2)
September 2008 (1)
August 2008 (1)
July 2008 (1)
June 2008 (1)
January 2008 (5)
December 2007 (1)
November 2007 (3)
October 2007 (2)
September 2007 (2)
August 2007 (1)
May 2007 (4)
April 2007 (7)
March 2007 (5)
February 2007 (9)
December 2006 (15)
November 2006 (10)
October 2006 (3)
September 2006 (1)
July 2006 (8)
June 2006 (5)
May 2006 (5)
April 2006 (4)
March 2006 (3)
February 2006 (4)
January 2006 (4)
December 2005 (1)
November 2005 (5)
October 2005 (7)
September 2005 (2)
July 2005 (2)
June 2005 (4)
May 2005 (6)
March 2005 (10)
February 2005 (7)
January 2005 (10)
December 2004 (7)
November 2004 (1)
September 2004 (2)
July 2004 (5)
June 2004 (3)
May 2004 (3)
April 2004 (3)
March 2004 (1)
February 2004 (9)
January 2004 (8)
December 2003 (1)
November 2003 (3)
October 2003 (1)
September 2003 (5)
August 2003 (3)
April 2003 (2)
March 2003 (1)
February 2003 (6)
Browse by Tags
All Tags
»
NuGet
(
RSS
)
VSX
Tuesday, May 17, 2011 1:28 AM
Persisting custom properties on a Visual Studio project using object model
It is possible to persist custom properties in your Visual Studio project. I will show how using some PowerShell code in the NuGet console. Note that VariableValue() persist in session, the call to VariablePersists() writes to the project file for persistance...
Posted by
svdoever
|
4 comment(s)
Filed under:
VSX
,
NuGet
Sunday, May 15, 2011 4:43 PM
Set the properties on your Visual Studio project
Reminder to self: Settings properties on a Visual Studio project,like DefaultNamespace and AssemblyName. In NuGet console window: (Get-Project).Properties.Item("DefaultNamespace").Value = "HelloWorld" Available properties on a simple...
Posted by
svdoever
|
3 comment(s)
Filed under:
VSX
,
NuGet
Wednesday, May 04, 2011 2:48 AM
NuGet: refreshing NuGet packages in packages folder during development
I'm working on NuGet packages in a Visual Studio project. On build I publish a new version of my nuget package to a repository (a directory on my system). I don't increment version numbers after each change, i only want to do that on published versions...
Posted by
svdoever
|
5 comment(s)
Filed under:
NuGet
Tuesday, May 03, 2011 10:14 PM
NuGet: should you check-in packages into source control?
Interesting discussion at http://nuget.codeplex.com/discussions/230110 about checking in NuGet packages into source control. NuGet packages can contain more than a simple libraries, it can contain tools that grow quite big as well. Good example in the...
Posted by
svdoever
|
20 comment(s)
Filed under:
NuGet
Tuesday, May 03, 2011 9:52 PM
NuGet: test if a package is installed
With Get-Package you can get the list of currently installed packages. How can you test if a package is installed? Get-Package returns list of packages as follows: Id ...
Posted by
svdoever
|
28 comment(s)
Filed under:
NuGet
More Posts