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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet-bot <dotnet-bot@microsoft.com>2016-05-03 20:37:28 +0300
committerdotnet-bot <dotnet-bot@microsoft.com>2016-05-03 20:37:28 +0300
commitd912adb01743ce16bfe195808b697206f713a75d (patch)
treefbb00cd75e6495faaef62664d46df9267556b115 /dir.props
parent4b272898dd0412459c16d260714f39af8727fc67 (diff)
Remove explicit references to v3 feeds
[tfs-changeset: 1601229]
Diffstat (limited to 'dir.props')
-rw-r--r--dir.props8
1 files changed, 4 insertions, 4 deletions
diff --git a/dir.props b/dir.props
index c77313da1..28434e57e 100644
--- a/dir.props
+++ b/dir.props
@@ -121,9 +121,9 @@
<!-- list of nuget package sources passed to dnu -->
<ItemGroup Condition="'$(ExcludeInternetFeeds)' != 'true'">
<!-- Need to escape double forward slash (%2F) or MSBuild will normalize to one slash on Unix. -->
- <DnuSourceList Include="https:%2F%2Fdotnet.myget.org/F/dotnet-core/api/v3/index.json" />
- <DnuSourceList Include="https:%2F%2Fdotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json" />
- <DnuSourceList Include="https:%2F%2Fdotnet.myget.org/F/dotnet-corert/api/v3/index.json" />
+ <DnuSourceList Include="https:%2F%2Fdotnet.myget.org/F/dotnet-core/" />
+ <DnuSourceList Include="https:%2F%2Fdotnet.myget.org/F/dotnet-corefxlab/" />
+ <DnuSourceList Include="https:%2F%2Fdotnet.myget.org/F/dotnet-corert/" />
<DnuSourceList Include="https:%2F%2Fapi.nuget.org/v3/index.json" />
</ItemGroup>
@@ -135,7 +135,7 @@
<PropertyGroup>
<DotnetToolCommand Condition="'$(DotnetToolCommand)' == '' and '$(OsEnvironment)'!='Unix'">$(DotnetCliPath)dotnet.exe</DotnetToolCommand>
<DotnetToolCommand Condition="'$(DotnetToolCommand)' == '' and '$(OsEnvironment)'=='Unix'">$(DotnetCliPath)dotnet</DotnetToolCommand>
- <DnuToolPath>$(DotnetToolCommand)</DnuToolPath>
+ <DnuToolPath Condition="'$(DnuToolPath)'==''">$(DotnetToolCommand)</DnuToolPath>
<DnuRestoreSource>@(DnuSourceList -> '--source %(Identity)', ' ')</DnuRestoreSource>