Skip to content

Commit

Permalink
2.114.0 and consume new web api
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsciple committed Mar 2, 2017
1 parent 3213a75 commit 89c19dc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Agent.Listener/Agent.Listener.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Win32.Registry" Version="4.3.0" />
<PackageReference Include="vss-api-netcore" Version="0.5.38-private" />
<PackageReference Include="vss-api-netcore" Version="0.5.39-private" />
<PackageReference Include="System.ServiceProcess.ServiceController" Version="4.3.0" />
<PackageReference Include="System.IO.Compression.ZipFile" Version="4.3.0" />
<PackageReference Include="System.IO.FileSystem.AccessControl" Version="4.3.0" />
Expand Down
2 changes: 1 addition & 1 deletion src/Agent.Worker/Agent.Worker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="vss-api-netcore" Version="0.5.38-private" />
<PackageReference Include="vss-api-netcore" Version="0.5.39-private" />
<PackageReference Include="System.Collections.NonGeneric" Version="4.3.0" />
<PackageReference Include="System.Diagnostics.TraceSource" Version="4.3.0" />
<PackageReference Include="System.Linq" Version="4.3.0" />
Expand Down
2 changes: 1 addition & 1 deletion src/Agent.Worker/TaskRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public string Condition
{
get
{
string condition = ExecutionContext.Variables.Get($"VSTS_TEMP_CONDITION_{DisplayName}"); //TaskInstance.Condition;
string condition = TaskInstance.Condition;
if (!string.IsNullOrEmpty(condition))
{
return condition;
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.VisualStudio.Services.Agent/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public enum OSPlatform

public static class Agent
{
public static readonly string Version = "2.111.0";
public static readonly string Version = "2.114.0";

#if OS_LINUX
public static readonly OSPlatform Platform = OSPlatform.Linux;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="vss-api-netcore" Version="0.5.38-private" />
<PackageReference Include="vss-api-netcore" Version="0.5.39-private" />
<PackageReference Include="Microsoft.Win32.Registry" Version="4.3.0" />
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
<PackageReference Include="System.Diagnostics.TraceSource" Version="4.3.0" />
Expand Down
2 changes: 1 addition & 1 deletion src/Test/Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<PackageReference Include="System.Buffers" Version="4.3.0" />
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.3.0" />
<PackageReference Include="System.Threading.ThreadPool" Version="4.3.0" />
<PackageReference Include="vss-api-netcore" Version="0.5.38-private" />
<PackageReference Include="vss-api-netcore" Version="0.5.39-private" />
<PackageReference Include="Moq" Version="4.6.36-alpha" />
</ItemGroup>

Expand Down

0 comments on commit 89c19dc

Please sign in to comment.