Skip to content

Commit b42901f

Browse files
committed
update packages and core tests projects
(cherry picked from commit 0f800bb) (cherry picked from commit 52eb7cd)
1 parent b787b96 commit b42901f

28 files changed

+86
-60
lines changed

build/scripts/scripts.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<PackageReference Include="FSharp.Core" Version="4.7.0" />
3939

4040
<PackageReference Include="Bullseye" Version="3.3.0" />
41-
<PackageReference Include="Elastic.Managed" Version="0.1.0-ci20200306T203119" />
41+
<PackageReference Include="Elastic.Elasticsearch.Managed" Version="0.1.0-canary.0.244" />
4242

4343
<PackageReference Include="Fake.Core.Environment" Version="5.15.0" />
4444
<PackageReference Include="Fake.Core.SemVer" Version="5.15.0" />

nuget.config

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<packageSources>
4-
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
54
<add key="Elastic Abstractions CI" value="https://ci.appveyor.com/nuget/elasticsearch-net-abstractions" />
65
<add key="Versioned Clients" value="https://ci.appveyor.com/nuget/elasticsearch-net" />
7-
<add key="AssemblyRewriter" value="https://ci.appveyor.com/nuget/assemblyrewriter" />
8-
<add key="AssemblyDiffer" value="https://ci.appveyor.com/nuget/assemblydiffer" />
6+
<add key="github" value="https://nuget.pkg.github.com/elastic/index.json" />
97
</packageSources>
108
</configuration>

tests/Tests.Benchmarking/BenchmarkProgram.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information
4+
15
using System;
26
using System.Collections.Generic;
37
using System.IO;
48
using System.Linq;
59
using System.Reflection;
6-
using System.Runtime.InteropServices;
710
using BenchmarkDotNet.Attributes;
811
using BenchmarkDotNet.Configs;
912
using BenchmarkDotNet.Diagnosers;
1013
using BenchmarkDotNet.Environments;
1114
using BenchmarkDotNet.Exporters;
1215
using BenchmarkDotNet.Jobs;
1316
using BenchmarkDotNet.Running;
14-
using Elastic.BenchmarkDotNetExporter;
15-
using LibGit2Sharp;
17+
using Elastic.CommonSchema.BenchmarkDotNetExporter;
1618

1719
namespace Tests.Benchmarking
1820
{

tests/Tests.Benchmarking/Tests.Benchmarking.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</ItemGroup>
1313
<ItemGroup>
1414
<PackageReference Include="BenchmarkDotNet" Version="0.12.0" />
15-
<PackageReference Include="Elastic.BenchmarkDotNetExporter" Version="0.1.0-ci20191209T135928" />
15+
<PackageReference Include="Elastic.CommonSchema.BenchmarkDotNetExporter" Version="1.5.0" />
1616
<PackageReference Include="LibGit2Sharp" Version="0.26.0-preview-0062" />
1717
<PackageReference Include="NEST.v7" Version="7.5.0-ci20191031T180108" />
1818
</ItemGroup>

tests/Tests.ClusterLauncher/ClusterLaunchProgram.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
using System.Collections.Generic;
33
using System.Linq;
44
using System.Reflection;
5-
using Elastic.Managed;
6-
using Elastic.Managed.Ephemeral;
5+
using Elastic.Elasticsearch.Ephemeral;
6+
using Elastic.Elasticsearch.Managed;
77
using FluentAssertions.Common;
88
using Tests.Configuration;
99
using Tests.Core.ManagedElasticsearch.Clusters;

tests/Tests.Configuration/TestConfigurationBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using System;
2-
using Elastic.Stack.Artifacts;
2+
using Elastic.Stack.ArtifactsApi;
33

44
namespace Tests.Configuration
55
{

tests/Tests.Configuration/Tests.Configuration.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
<TargetFramework>netstandard2.0</TargetFramework>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageReference Include="Elastic.Managed" Version="0.1.0-ci20200306T203119" />
6+
<PackageReference Include="Elastic.Elasticsearch.Managed" Version="0.1.0-canary.0.244" />
77
</ItemGroup>
88
</Project>

tests/Tests.Core/Extensions/EphemeralClusterExtensions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System;
22
using System.Security.Cryptography.X509Certificates;
3-
using Elastic.Managed.Ephemeral;
4-
using Elastic.Xunit;
5-
using Elasticsearch.Net;
3+
using Elastic.Elasticsearch.Ephemeral;
4+
using Elastic.Elasticsearch.Xunit;
5+
using Elasticsearch.Net;
66
using Nest;
77
using Tests.Core.Client.Settings;
88

tests/Tests.Core/ManagedElasticsearch/ClusterTestClassBase.cs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
using Elastic.Managed.Ephemeral;
2-
using Elastic.Xunit.XunitPlumbing;
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information
4+
5+
using Elastic.Elasticsearch.Ephemeral;
6+
using Elastic.Elasticsearch.Xunit.XunitPlumbing;
37
using Nest;
48
using Tests.Core.ManagedElasticsearch.Clusters;
59

tests/Tests.Core/ManagedElasticsearch/Clusters/ClientTestClusterBase.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System.IO;
2-
using Elastic.Managed.Ephemeral;
3-
using Elastic.Managed.Ephemeral.Plugins;
4-
using Elastic.Stack.Artifacts.Products;
5-
using Elastic.Xunit;
2+
using Elastic.Elasticsearch.Ephemeral;
3+
using Elastic.Elasticsearch.Ephemeral.Plugins;
4+
using Elastic.Elasticsearch.Xunit;
5+
using Elastic.Stack.ArtifactsApi.Products;
66
using Elasticsearch.Net;
77
using Nest;
88
using Tests.Configuration;

0 commit comments

Comments
 (0)