Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 0523354

Browse files
committed
Workaround nuget bug and pass the local path last instead of first
There is a bug in nuget where passing a local file path first causes an error in restore. To workaround move the local file path to the last source
1 parent f3b5195 commit 0523354

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

tests/dir.props

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@
66
<PropertyGroup>
77
<OsEnvironment Condition="'$(OsEnvironment)'==''">$(OS)</OsEnvironment>
88
</PropertyGroup>
9-
9+
1010
<!-- Build Tools Versions -->
1111
<PropertyGroup>
1212
<RoslynVersion>1.0.0-rc3-20150510-01</RoslynVersion>
1313
<RoslynPackageName>Microsoft.Net.ToolsetCompilers</RoslynPackageName>
1414
</PropertyGroup>
1515

16-
<!--
17-
Switching to the .NET Core version of the BuildTools tasks seems to break numerous scenarios, such as VS intellisense and resource designer
18-
as well as runnning the build on mono. Until we can get these sorted out we will continue using the .NET 4.6 version of the tasks.
19-
-->
20-
<PropertyGroup>
21-
<BuildToolsTargets45>true</BuildToolsTargets45>
22-
</PropertyGroup>
16+
<!--
17+
Switching to the .NET Core version of the BuildTools tasks seems to break numerous scenarios, such as VS intellisense and resource designer
18+
as well as runnning the build on mono. Until we can get these sorted out we will continue using the .NET 4.6 version of the tasks.
19+
-->
20+
<PropertyGroup>
21+
<BuildToolsTargets45>true</BuildToolsTargets45>
22+
</PropertyGroup>
2323

2424
<!-- Common repo directories -->
2525
<PropertyGroup>
@@ -72,8 +72,8 @@
7272
$(RestoreSources)
7373
</RestoreSources>
7474
<RestoreSources Condition="'$(OverwriteCoreClrPackageVersion)' == 'true'">
75-
$(PackagesDir)AzureTransfer\;
7675
$(RestoreSources)
76+
$(PackagesDir)AzureTransfer\;
7777
</RestoreSources>
7878
</PropertyGroup>
7979

@@ -101,17 +101,17 @@
101101

102102
<!-- Which tests shall we build? Default: Priority 0 tests.
103103
At the command-line, the user can specify /p:CLRTestPriorityToBuild=666 (for example), and
104-
all tests with CLRTestPriority 666,..., 1 AND 0 will build.
105-
104+
all tests with CLRTestPriority 666,..., 1 AND 0 will build.
105+
106106
Consequently, specifying CLRTestPriorityToBuild=1 will build all tests with CLRTestPriority 1 and 0.
107-
108-
CLRTestPriority = 0 will build only priority 0 cases.
109-
107+
108+
CLRTestPriority = 0 will build only priority 0 cases.
109+
110110
In other words, the CLRTestPriority cases of 0 are *essential* testcases. The higher the value,
111111
the less priority we give them.
112112
-->
113113
<PropertyGroup>
114114
<CLRTestPriorityToBuild>0</CLRTestPriorityToBuild>
115115
</PropertyGroup>
116-
116+
117117
</Project>

0 commit comments

Comments
 (0)