Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorbradwilson <dotnetguy@gmail.com>2012-03-22 23:11:19 +0400
committerbradwilson <dotnetguy@gmail.com>2012-03-27 07:18:15 +0400
commit72cba8ff01637a548e043804c12620b425335540 (patch)
tree7e6a665267d5a6164804c4143cade0fc5ea0700c /tools
parent69030f84a185e82980d50ae0f09f9adb33d693cf (diff)
Updated NuGet targets to use MyGet feed
Diffstat (limited to 'tools')
-rw-r--r--tools/WebStack.NuGet.targets5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/WebStack.NuGet.targets b/tools/WebStack.NuGet.targets
index 7864187d..f21c4a66 100644
--- a/tools/WebStack.NuGet.targets
+++ b/tools/WebStack.NuGet.targets
@@ -6,10 +6,11 @@
<NuGetExePath>$(NuGetToolsPath)\NuGet.exe</NuGetExePath>
<PackagesConfig>$([System.IO.Path]::Combine($(ProjectDir), "packages.config"))</PackagesConfig>
<PackagesDir>$([System.IO.Path]::Combine($(SolutionDir), "packages"))</PackagesDir>
- <PackageOutputDir Condition="$(PackageOutputDir) == ''">$(TargetDir.Trim('\\'))</PackageOutputDir>
+ <PackageOutputDir Condition="'$(PackageOutputDir)' == ''">$(TargetDir.Trim('\\'))</PackageOutputDir>
+ <PreReleasePackagesUrl Condition="'$(PreReleasePackagesUrl)' == ''">http://www.myget.org/F/f05dce941ae4485090b04586209c8b08/</PreReleasePackagesUrl>
<!-- Package sources used to restore packages. By default will used the registered sources under %APPDATA%\NuGet\NuGet.Config -->
- <PackageSources>"\\webstack-git\packages;https://go.microsoft.com/fwlink/?LinkID=230477"</PackageSources>
+ <PackageSources>"https://go.microsoft.com/fwlink/?LinkID=230477;$(PreReleasePackagesUrl)"</PackageSources>
<!-- Enable the restore command to run before builds -->
<RestorePackages Condition="$(RestorePackages) == ''">false</RestorePackages>