Skip to content

Commit 7401937

Browse files
committed
use "NuGet.CommandLine" version="6.8.0" instead of 6.6.1
1 parent 11ce05f commit 7401937

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

builder/builder/Nuspec.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ private static void CreateNuspec(
8686
nuspec.CreateDocument().Save(nuspecFile);
8787
Process.Start(
8888
new ProcessStartInfo(
89-
@"..\..\..\packages\NuGet.CommandLine.6.6.1\tools\nuget.exe",
89+
@"..\..\..\packages\NuGet.CommandLine.6.8.0\tools\nuget.exe",
9090
"pack " + nuspecFile)
9191
{
9292
UseShellExecute = false,
@@ -96,7 +96,7 @@ private static void CreateNuspec(
9696
{
9797
/* var p = Process.Start(
9898
new ProcessStartInfo(
99-
@"..\..\..\packages\NuGet.CommandLine.6.6.1\tools\nuget.exe",
99+
@"..\..\..\packages\NuGet.CommandLine.6.8.0\tools\nuget.exe",
100100
$"push {nupkgFile} -Source https://api.nuget.org/v3/index.json -ApiKey {ApiKey.Value}")
101101
{
102102
UseShellExecute = false,

builder/builder/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="Framework.G1" version="1.0.13.0" targetFramework="net45" userInstalled="true" />
4-
<package id="NuGet.CommandLine" version="6.6.1" targetFramework="net48" userInstalled="true" developmentDependency="true" />
4+
<package id="NuGet.CommandLine" version="6.8.0" targetFramework="net48" userInstalled="true" developmentDependency="true" />
55
</packages>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="Framework.G1" version="1.0.13.0" targetFramework="net451" />
4-
<package id="NuGet.CommandLine" version="6.6.1" targetFramework="net48" developmentDependency="true" />
4+
<package id="NuGet.CommandLine" version="6.8.0" targetFramework="net48" developmentDependency="true" />
55
</packages>

0 commit comments

Comments
 (0)