Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit a1baabf

Browse files
committed
Update nuget to v3.4
1 parent eb9d744 commit a1baabf

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

src/.nuget/NuGet.config

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,15 @@
33
<solution>
44
<add key="disableSourceControlIntegration" value="true" />
55
</solution>
6+
<packageRestore>
7+
<add key="enabled" value="True" />
8+
<add key="automatic" value="True" />
9+
</packageRestore>
610
<packageSources>
7-
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
811
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
12+
<add key="ServiceStack MyGet feed" value="https://www.myget.org/F/servicestack" />
913
</packageSources>
14+
<activePackageSource>
15+
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
16+
</activePackageSource>
1017
</configuration>

src/.nuget/NuGet.exe

2.24 MB
Binary file not shown.

src/.nuget/NuGet.targets

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</PropertyGroup>
1313

1414
<PropertyGroup Condition=" '$(OS)' != 'Windows_NT'">
15-
<!-- We need to launch nuget.exe with the mono command if we're not on windows -->
15+
<!-- We need to launch NuGet.exe with the mono command if we're not on windows -->
1616
<NuGetToolsPath>$(SolutionDir).nuget</NuGetToolsPath>
1717
<PackagesConfig>packages.config</PackagesConfig>
1818
<PackagesDir>$(SolutionDir)packages</PackagesDir>
@@ -53,7 +53,7 @@
5353
</PropertyGroup>
5454

5555
<Target Name="CheckPrerequisites">
56-
<!-- Raise an error if we're unable to locate nuget.exe -->
56+
<!-- Raise an error if we're unable to locate NuGet.exe -->
5757
<Error Condition="!Exists('$(NuGetExePath)')" Text="Unable to locate '$(NuGetExePath)'" />
5858
</Target>
5959

@@ -74,4 +74,4 @@
7474
LogStandardErrorAsError="true"
7575
Condition=" '$(OS)' == 'Windows_NT' " />
7676
</Target>
77-
</Project>
77+
</Project>

0 commit comments

Comments
 (0)