<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>nugetdocs Issue Tracker Rss Feed</title><link>http://nugetdocs.codeplex.com/workitem/list/basic</link><description>nugetdocs Issue Tracker Rss Description</description><item><title>Created Issue: Doc on nuget pack / metadata [45]</title><link>http://nugetdocs.codeplex.com/workitem/45</link><description>from http&amp;#58;&amp;#47;&amp;#47;nuget.codeplex.com&amp;#47;workitem&amp;#47;2416&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&amp;#34;If the nuspec is in the same directory as the project file, the pack command will use metadata from the file.&amp;#34;&lt;br /&gt;&amp;#34;It would be cool of you guys if you could update the documentation to make clear that the nuspec and project files are supposed to be in the same directory for this to work &amp;#58;&amp;#41;&amp;#34;&lt;br /&gt;</description><author>aldion</author><pubDate>Wed, 11 Jul 2012 18:21:56 GMT</pubDate><guid isPermaLink="false">Created Issue: Doc on nuget pack / metadata [45] 20120711062156P</guid></item><item><title>Created Issue: Document pack workflow w/ dependencies [44]</title><link>http://nugetdocs.codeplex.com/workitem/44</link><description>redirected from http&amp;#58;&amp;#47;&amp;#47;nuget.codeplex.com&amp;#47;workitem&amp;#47;2405&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description><author>aldion</author><pubDate>Tue, 10 Jul 2012 23:20:54 GMT</pubDate><guid isPermaLink="false">Created Issue: Document pack workflow w/ dependencies [44] 20120710112054P</guid></item><item><title>Created Issue: Add documentation about how to connect to the feed behind a proxy [43]</title><link>http://nugetdocs.codeplex.com/workitem/43</link><description>The fix to issue http&amp;#58;&amp;#47;&amp;#47;nuget.codeplex.com&amp;#47;workitem&amp;#47;1924 is adding a new feature to nuget.&lt;br /&gt;&lt;br /&gt;We need to add documentation to docs.nuget.org so people will know how to use this feature while working behind a proxy.&lt;br /&gt;</description><author>danliu</author><pubDate>Fri, 08 Jun 2012 23:25:53 GMT</pubDate><guid isPermaLink="false">Created Issue: Add documentation about how to connect to the feed behind a proxy [43] 20120608112553P</guid></item><item><title>Created Issue: Update docs to note that nuget pack ignores files/folders that start with a dot character [42]</title><link>http://nugetdocs.codeplex.com/workitem/42</link><description>See issue http&amp;#58;&amp;#47;&amp;#47;nuget.codeplex.com&amp;#47;workitem&amp;#47;1582 for details.&lt;br /&gt;</description><author>Haacked</author><pubDate>Mon, 03 Oct 2011 04:05:10 GMT</pubDate><guid isPermaLink="false">Created Issue: Update docs to note that nuget pack ignores files/folders that start with a dot character [42] 20111003040510A</guid></item><item><title>Created Issue: Updated docs with info about safe updates during install [41]</title><link>http://nugetdocs.codeplex.com/workitem/41</link><description>From here&amp;#58; http&amp;#58;&amp;#47;&amp;#47;nuget.codeplex.com&amp;#47;workitem&amp;#47;1583&lt;br /&gt;&lt;br /&gt;Documentation states that, for dependencies that are already installed&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#34;If the dependency is already installed, then one of two things happens&amp;#58;&lt;br /&gt;&amp;#42; If the installed dependency is within the version range, then nothing more needs to happen. The dependency is met.&lt;br /&gt;&amp;#42; If the installed dependency is outside of the version range, installation fails. &amp;#40;Version leveling in a future version of NuGet will fix this.&amp;#41;&amp;#34;&lt;br /&gt;&lt;br /&gt;This doesn&amp;#39;t seem to be the actual behavior, based on this&amp;#58;&lt;br /&gt;&lt;br /&gt;PM&amp;#62; Install-Package Newtonsoft.Json -Version 4.0.2&lt;br /&gt;Successfully installed &amp;#39;Newtonsoft.Json 4.0.2&amp;#39;.&lt;br /&gt;Successfully added &amp;#39;Newtonsoft.Json 4.0.2&amp;#39; to Foo.Tests.ApiTests.&lt;br /&gt;&lt;br /&gt;PM&amp;#62; Install-Package RestSharp -Version 101.3&lt;br /&gt;Attempting to resolve dependency &amp;#39;Newtonsoft.Json&amp;#39;.&lt;br /&gt;Successfully installed &amp;#39;Newtonsoft.Json 4.0.3&amp;#39;.&lt;br /&gt;Successfully installed &amp;#39;RestSharp 101.3&amp;#39;.&lt;br /&gt;Successfully removed &amp;#39;Newtonsoft.Json 4.0.2&amp;#39; from Foo.Tests.ApiTests.&lt;br /&gt;Successfully added &amp;#39;Newtonsoft.Json 4.0.3&amp;#39; to Foo.Tests.ApiTests.&lt;br /&gt;Successfully added &amp;#39;RestSharp 101.3&amp;#39; to Foo.Tests.ApiTests.&lt;br /&gt;Successfully uninstalled &amp;#39;Newtonsoft.Json 4.0.2&amp;#39;.&lt;br /&gt;&lt;br /&gt;The dependency in RestSharp.nuspec does not have any particular version number.&lt;br /&gt;&amp;#60;dependency id&amp;#61;&amp;#34;Newtonsoft.Json&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;&lt;br /&gt;Ah, I think the docs are outdated. I think we do &amp;#34;safe&amp;#34; upgrades based on the semantics of SemVer, http&amp;#58;&amp;#47;&amp;#47;semver.org&amp;#47;. Assuming a version of X.Y.Z, Patch version Z &amp;#40;x.y.Z &amp;#124; x &amp;#62; 0&amp;#41; MUST be incremented if only backwards compatible bug fixes are introduced. A bug fix is defined as an internal change that fixes incorrect behavior.&lt;br /&gt;&lt;br /&gt;We figured you probably want bug fixes. Of course, not every package author follows this, but we&amp;#39;re going to try and encourage it more and more. If the package author did break you, please contact them and tell them adding breaking changes without incrementing the Major &amp;#40;or at least Minor&amp;#41; version is not nice.&lt;br /&gt;&lt;br /&gt;In the meanwhile, if you want to lock that version, you can by hand editing packages.config and adding an allowedVersions attribute with a version range. In your case&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#60;package id&amp;#61;&amp;#34;NewtonSoft.Json&amp;#34; allowedVersion&amp;#61;&amp;#34;&amp;#91;4.0.2&amp;#93;&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;</description><author>Haacked</author><pubDate>Mon, 03 Oct 2011 03:40:08 GMT</pubDate><guid isPermaLink="false">Created Issue: Updated docs with info about safe updates during install [41] 20111003034008A</guid></item><item><title>Created Issue: Add an overview of the NuGet ecosystem to Docs [40]</title><link>http://nugetdocs.codeplex.com/workitem/40</link><description>starting point could be http&amp;#58;&amp;#47;&amp;#47;www.xavierdecoster.com&amp;#47;post&amp;#47;2011&amp;#47;09&amp;#47;30&amp;#47;An-overview-of-the-NuGet-ecosystem.aspx&lt;br /&gt;</description><author>XavierDecoster</author><pubDate>Fri, 30 Sep 2011 20:47:15 GMT</pubDate><guid isPermaLink="false">Created Issue: Add an overview of the NuGet ecosystem to Docs [40] 20110930084715P</guid></item><item><title>Commented Issue: Code Review page 404 [29]</title><link>http://nugetdocs.codeplex.com/workitem/29</link><description>The page http&amp;#58;&amp;#47;&amp;#47;docs.nuget.org&amp;#47;docs&amp;#47;contribute&amp;#47;Code-Reviews, which is linked from several other locations in the NuGet docs, &amp;#40;such as from here&amp;#58; http&amp;#58;&amp;#47;&amp;#47;docs.nuget.org&amp;#47;docs&amp;#47;contribute&amp;#47;contributing-to-nuget&amp;#41; returns a 404. I can&amp;#39;t find any other sources on the NuGet docs site about code reviews.&lt;br /&gt;Comments: nevermind. the page is old it should probably be taken down since it returns in search engines... &amp;#58;&amp;#41;</description><author>aldion</author><pubDate>Wed, 28 Sep 2011 18:59:52 GMT</pubDate><guid isPermaLink="false">Commented Issue: Code Review page 404 [29] 20110928065952P</guid></item><item><title>Commented Issue: Code Review page 404 [29]</title><link>http://nugetdocs.codeplex.com/workitem/29</link><description>The page http&amp;#58;&amp;#47;&amp;#47;docs.nuget.org&amp;#47;docs&amp;#47;contribute&amp;#47;Code-Reviews, which is linked from several other locations in the NuGet docs, &amp;#40;such as from here&amp;#58; http&amp;#58;&amp;#47;&amp;#47;docs.nuget.org&amp;#47;docs&amp;#47;contribute&amp;#47;contributing-to-nuget&amp;#41; returns a 404. I can&amp;#39;t find any other sources on the NuGet docs site about code reviews.&lt;br /&gt;Comments: Note&amp;#58; the page exist in &amp;#34;vnext&amp;#34; &amp;#58; http&amp;#58;&amp;#47;&amp;#47;preview.docs.nuget.org&amp;#47;docs&amp;#47;contribute&amp;#47;code-reviews&amp;#10;but not in &amp;#34;default&amp;#34; &amp;#58; http&amp;#58;&amp;#47;&amp;#47;docs.nuget.org&amp;#47;docs&amp;#47;contribute&amp;#47;code-reviews&amp;#10;this should be fixed once the branches are merged.</description><author>aldion</author><pubDate>Wed, 28 Sep 2011 18:58:09 GMT</pubDate><guid isPermaLink="false">Commented Issue: Code Review page 404 [29] 20110928065809P</guid></item><item><title>Commented Issue: documentation for nuspec file -exclude misleading [39]</title><link>http://nugetdocs.codeplex.com/workitem/39</link><description>follow up to http&amp;#58;&amp;#47;&amp;#47;nuget.codeplex.com&amp;#47;workitem&amp;#47;1498&lt;br /&gt;Comments: Fixed with changeset 3064c431e43b</description><author>aldion</author><pubDate>Wed, 28 Sep 2011 18:43:57 GMT</pubDate><guid isPermaLink="false">Commented Issue: documentation for nuspec file -exclude misleading [39] 20110928064357P</guid></item><item><title>Edited Issue: documentation for nuspec file -exclude misleading [39]</title><link>http://nugetdocs.codeplex.com/workitem/39</link><description>follow up to http&amp;#58;&amp;#47;&amp;#47;nuget.codeplex.com&amp;#47;workitem&amp;#47;1498&lt;br /&gt;</description><author>aldion</author><pubDate>Wed, 28 Sep 2011 18:43:57 GMT</pubDate><guid isPermaLink="false">Edited Issue: documentation for nuspec file -exclude misleading [39] 20110928064357P</guid></item><item><title>Created Issue: documentation for nuspec file -exclude misleading [39]</title><link>http://nugetdocs.codeplex.com/workitem/39</link><description>follow up to http&amp;#58;&amp;#47;&amp;#47;nuget.codeplex.com&amp;#47;workitem&amp;#47;1498&lt;br /&gt;</description><author>aldion</author><pubDate>Wed, 28 Sep 2011 18:08:35 GMT</pubDate><guid isPermaLink="false">Created Issue: documentation for nuspec file -exclude misleading [39] 20110928060835P</guid></item><item><title>Created Issue: Nuget documents for command line should explain layout of %AppData%\NuGet\NuGet.config [38]</title><link>http://nugetdocs.codeplex.com/workitem/38</link><description>The command line documentation at http&amp;#58;&amp;#47;&amp;#47;docs.nuget.org&amp;#47;docs&amp;#47;reference&amp;#47;command-line-reference says &amp;#34;If no sources are specified, all sources defined in &amp;#37;AppData&amp;#37;&amp;#92;NuGet&amp;#92;NuGet.config are used.&amp;#34; but does not explain what the format of that file should be, and, by default it&amp;#39;s empty.&lt;br /&gt;&lt;br /&gt;Suggest&amp;#58; documentation should link to a page explaining NuGet.config that documents the format for adding package references.&lt;br /&gt;</description><author>Haacked</author><pubDate>Fri, 23 Sep 2011 03:25:59 GMT</pubDate><guid isPermaLink="false">Created Issue: Nuget documents for command line should explain layout of %AppData%\NuGet\NuGet.config [38] 20110923032559A</guid></item><item><title>Created Issue: Add Documentation for upcoming Pre-release feature NuGet 1.6 [37]</title><link>http://nugetdocs.codeplex.com/workitem/37</link><description>We need to document this for client and website.&lt;br /&gt;</description><author>Haacked</author><pubDate>Thu, 22 Sep 2011 19:56:37 GMT</pubDate><guid isPermaLink="false">Created Issue: Add Documentation for upcoming Pre-release feature NuGet 1.6 [37] 20110922075637P</guid></item><item><title>Created Issue: Update NuGet.Server docs to reflect features added in 1.5 [36]</title><link>http://nugetdocs.codeplex.com/workitem/36</link><description>We added the ability to specify where the packages folder should go in nuget 1.5 and the docs need to be updated to reflect this.&lt;br /&gt;</description><author>dfowler</author><pubDate>Wed, 07 Sep 2011 17:53:39 GMT</pubDate><guid isPermaLink="false">Created Issue: Update NuGet.Server docs to reflect features added in 1.5 [36] 20110907055339P</guid></item><item><title>Created Issue: install.ps1 firing behavior not clear in documentation  [35]</title><link>http://nugetdocs.codeplex.com/workitem/35</link><description>originally filed &amp;#58;http&amp;#58;&amp;#47;&amp;#47;nuget.codeplex.com&amp;#47;workitem&amp;#47;1468&lt;br /&gt;&lt;br /&gt;&amp;#34;This text is from&amp;#58; http&amp;#58;&amp;#47;&amp;#47;docs.nuget.org&amp;#47;docs&amp;#47;creating-packages&amp;#47;creating-and-publishing-a-package&lt;br /&gt;&lt;br /&gt;Install.ps1 runs when a package is installed in a project.&lt;br /&gt;&amp;#9702;If the same package is installed in multiple projects in a solution, the script runs each time the package is installed. &lt;br /&gt;&amp;#9702;If a package is not installed into a project &amp;#40;such as the tools only package&amp;#41;, the script runs when the package is installed into the solution.&lt;br /&gt;&amp;#9702;The package must have files in the content or lib folder for Install.ps1 to run. Just having something in the tools folder will not kick this off.&lt;br /&gt;&amp;#9702;If your package also has an init.ps1, install.ps1 runs after init.ps1.&lt;br /&gt;&lt;br /&gt;It seems like lines 2 and 3 aren&amp;#39;t self consistent. You have to have something in the content or lib folder for Install.ps1 to fire. But if you only hvae stuff in the tools folder then it will fire. The confusion may be caused by a misunderstanding of &amp;#34;tools only package&amp;#34;, but I was not able to find a definition of that term anywhere else on that web page.&amp;#34;&lt;br /&gt;</description><author>aldion</author><pubDate>Thu, 01 Sep 2011 23:05:13 GMT</pubDate><guid isPermaLink="false">Created Issue: install.ps1 firing behavior not clear in documentation  [35] 20110901110513P</guid></item><item><title>Created Issue: Doc Outline has broken link if it contains encoded characters [34]</title><link>http://nugetdocs.codeplex.com/workitem/34</link><description>go to &amp;#58; &lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;docs.nuget.org&amp;#47;docs&amp;#47;release-notes&amp;#47;nuget-1.5&amp;#35;&amp;#37;3ccode&amp;#37;3eGet-Package&amp;#37;3c&amp;#37;2fcode&amp;#37;3e_command_improvement&lt;br /&gt;&lt;br /&gt;in the Doc outline &amp;#58;&lt;br /&gt;- NuSpec &amp;#38;lt&amp;#59;files &amp;#47;&amp;#38;gt&amp;#59; improvement&lt;br /&gt;- Bug fixes worth noting&amp;#58;&lt;br /&gt;- Get-Package command improvement &lt;br /&gt;&lt;br /&gt;these links are broken, are one shows some HTML&lt;br /&gt;</description><author>aldion</author><pubDate>Tue, 30 Aug 2011 22:35:01 GMT</pubDate><guid isPermaLink="false">Created Issue: Doc Outline has broken link if it contains encoded characters [34] 20110830103501P</guid></item><item><title>Created Issue: Integrate directly with AppHarbor [33]</title><link>http://nugetdocs.codeplex.com/workitem/33</link><description>http&amp;#58;&amp;#47;&amp;#47;blogs.msdn.com&amp;#47;b&amp;#47;codeplex&amp;#47;archive&amp;#47;2011&amp;#47;08&amp;#47;26&amp;#47;integration-with-appharbor.aspx&lt;br /&gt;</description><author>Haacked</author><pubDate>Fri, 26 Aug 2011 18:09:21 GMT</pubDate><guid isPermaLink="false">Created Issue: Integrate directly with AppHarbor [33] 20110826060921P</guid></item><item><title>Edited Issue: Doc: Changes to Update-Package - support for updating all projects/packages [13]</title><link>http://nugetdocs.codeplex.com/workitem/13</link><description>Need to document these new changes. See http&amp;#58;&amp;#47;&amp;#47;nuget.codeplex.com&amp;#47;wikipage&amp;#63;title&amp;#61;Updating&amp;#37;20All&amp;#37;20Packages&lt;br /&gt;&lt;br /&gt;Please update the spec and assign to me. I&amp;#39;ll update the docs.&lt;br /&gt;</description><author>Haacked</author><pubDate>Wed, 24 Aug 2011 05:36:12 GMT</pubDate><guid isPermaLink="false">Edited Issue: Doc: Changes to Update-Package - support for updating all projects/packages [13] 20110824053612A</guid></item><item><title>Commented Issue: Doc: Solution Level Add Package Dialog [12]</title><link>http://nugetdocs.codeplex.com/workitem/12</link><description>Need to document this. Perhaps as part of http&amp;#58;&amp;#47;&amp;#47;docs.nuget.org&amp;#47;docs&amp;#47;start-here&amp;#47;using-the-add-library-package-reference-dialog-box.&lt;br /&gt;Comments: Fixed a while ago.</description><author>Haacked</author><pubDate>Wed, 24 Aug 2011 05:35:50 GMT</pubDate><guid isPermaLink="false">Commented Issue: Doc: Solution Level Add Package Dialog [12] 20110824053550A</guid></item><item><title>Edited Issue: Doc: Solution Level Add Package Dialog [12]</title><link>http://nugetdocs.codeplex.com/workitem/12</link><description>Need to document this. Perhaps as part of http&amp;#58;&amp;#47;&amp;#47;docs.nuget.org&amp;#47;docs&amp;#47;start-here&amp;#47;using-the-add-library-package-reference-dialog-box.&lt;br /&gt;</description><author>Haacked</author><pubDate>Wed, 24 Aug 2011 05:35:50 GMT</pubDate><guid isPermaLink="false">Edited Issue: Doc: Solution Level Add Package Dialog [12] 20110824053550A</guid></item></channel></rss>