diff --git a/.travis.yml b/.travis.yml index 6a48bad8ae..ec67a6cdd3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,13 +6,6 @@ addons: sources: - deadsnakes packages: - # CoreCLR packages required for manual installation. Should be removed once we move to apt-det - - gettext - - libcurl4-openssl-dev - - libicu-dev - - libssl-dev - - libunwind8 - - zlib1g # Packages required for android build - libc6-i386 - lib32stdc++6 @@ -38,14 +31,10 @@ install: - echo y | ./android/android-sdk-linux/tools/android update sdk --all --filter extra-android-support,extra-android-m2repository,extra-google-m2repository --no-ui --force - export ANDROID_HOME=`pwd`/android/android-sdk-linux # Install NetCore RC2 - # due to bug in apt-get we need to use curl to download dotnet-install.sh. Commenting apt-get installation steps till the bug will be fixed. - # - sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list' - # - sudo apt-key adv --keyserver apt-mo.trafficmanager.net --recv-keys 417A0893 - # - sudo apt-get update - # - sudo apt-get install dotnet-dev-1.0.0-preview2-003118 -y - - mkdir dotnet - - curl -sSL https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0-preview1/scripts/obtain/dotnet-install.sh | bash /dev/stdin --version 1.0.0-preview1-002702 --install-dir ./dotnet - - export PATH=`pwd`/dotnet:$PATH + - sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list' + - sudo apt-key adv --keyserver apt-mo.trafficmanager.net --recv-keys 417A0893 + - sudo apt-get update + - sudo apt-get install dotnet-dev-1.0.0-preview2-003121 -y script: - gulp after_script: diff --git a/AutoRest/Generators/CSharp/Azure.CSharp.Tests/AcceptanceTests.cs b/AutoRest/Generators/CSharp/Azure.CSharp.Tests/AcceptanceTests.cs index 0b96cc856e..bb308b3be1 100644 --- a/AutoRest/Generators/CSharp/Azure.CSharp.Tests/AcceptanceTests.cs +++ b/AutoRest/Generators/CSharp/Azure.CSharp.Tests/AcceptanceTests.cs @@ -223,16 +223,10 @@ public void LroHappyPathTests() Assert.Equal("100", prod.Id); var sku = client.LROs.Post200WithPayload(); Assert.Equal("1", sku.Id); - // Retryable errors - Assert.Equal("Succeeded", - client.LRORetrys.Put201CreatingSucceeded200(new Product { Location = "West US" }).ProvisioningState); - Assert.Equal("Succeeded", - client.LRORetrys.PutAsyncRelativeRetrySucceeded(new Product { Location = "West US" }).ProvisioningState); + client.LRORetrys.DeleteProvisioning202Accepted200Succeeded(); client.LRORetrys.Delete202Retry200(); client.LRORetrys.DeleteAsyncRelativeRetrySucceeded(); - client.LRORetrys.Post202Retry200(new Product { Location = "West US" }); - client.LRORetrys.PostAsyncRelativeRetrySucceeded(new Product { Location = "West US" }); var customHeaders = new Dictionary> { @@ -247,15 +241,41 @@ public void LroHappyPathTests() Assert.NotNull(client.LROsCustomHeader.PostAsyncRetrySucceededWithHttpMessagesAsync( new Product { Location = "West US" }, customHeaders).Result); - // Failing in CoreCLR - TODO: debug and fix - // Assert.NotNull(client.LROsCustomHeader.Put201CreatingSucceeded200WithHttpMessagesAsync( - // new Product { Location = "West US" }, customHeaders).Result); - Assert.NotNull(client.LROsCustomHeader.Post202Retry200WithHttpMessagesAsync( new Product { Location = "West US" }, customHeaders).Result); } } + [Fact(Skip = "Failing in CoreCLR - TODO: debug and fix")] + public void LroHappyPathTestsRest() + { + SwaggerSpecRunner.RunTests( + SwaggerPath("lro.json"), ExpectedPath("Lro"), generator: "Azure.CSharp"); + using ( + var client = new AutoRestLongRunningOperationTestService(Fixture.Uri, + new TokenCredentials(Guid.NewGuid().ToString()))) + { + client.LongRunningOperationRetryTimeout = 0; + + var customHeaders = new Dictionary> + { + { + "x-ms-client-request-id", new List {"9C4D50EE-2D56-4CD3-8152-34347DC9F2B0"} + } + }; + + Assert.Equal("Succeeded", + client.LRORetrys.Put201CreatingSucceeded200(new Product { Location = "West US" }).ProvisioningState); + Assert.Equal("Succeeded", + client.LRORetrys.PutAsyncRelativeRetrySucceeded(new Product { Location = "West US" }).ProvisioningState); + client.LRORetrys.Post202Retry200(new Product { Location = "West US" }); + client.LRORetrys.PostAsyncRelativeRetrySucceeded(new Product { Location = "West US" }); + + Assert.NotNull(client.LROsCustomHeader.Put201CreatingSucceeded200WithHttpMessagesAsync( + new Product { Location = "West US" }, customHeaders).Result); + } + } + [Fact] public void LroSadPathTests() { diff --git a/AutoRest/Generators/CSharp/Azure.CSharp.Tests/project.json b/AutoRest/Generators/CSharp/Azure.CSharp.Tests/project.json index 5336ac01aa..3293aa7f36 100644 --- a/AutoRest/Generators/CSharp/Azure.CSharp.Tests/project.json +++ b/AutoRest/Generators/CSharp/Azure.CSharp.Tests/project.json @@ -24,14 +24,14 @@ }, "dependencies": { - "Microsoft.NETCore.App": { - "type": "platform", - "version": "1.0.0-rc2-*" + "Microsoft.NETCore.App": { + "type": "platform", + "version": "1.0.0" }, - "Microsoft.NETCore.Platforms": "1.0.1-rc2-24027", + "Microsoft.NETCore.Platforms": "1.0.1", "CSharp.Tests": "2.0.0", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.0,4.0.0)", - "xunit": "2.1.0", - "dotnet-test-xunit": "1.0.0-rc2-build10015" + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", + "xunit": "2.2.0-beta2-build3300", + "dotnet-test-xunit": "2.2.0-preview2-build1029" } } diff --git a/AutoRest/Generators/CSharp/CSharp.Tests/project.json b/AutoRest/Generators/CSharp/CSharp.Tests/project.json index d23ca6a42b..12b0a66b66 100644 --- a/AutoRest/Generators/CSharp/CSharp.Tests/project.json +++ b/AutoRest/Generators/CSharp/CSharp.Tests/project.json @@ -23,16 +23,16 @@ } }, "dependencies": { - "Microsoft.NETCore.App": { - "type": "platform", - "version": "1.0.0-rc2-*" + "Microsoft.NETCore.App": { + "type": "platform", + "version": "1.0.0" }, - "Microsoft.NETCore.Platforms": "1.0.1-rc2-24027", - "Microsoft.Rest.ClientRuntime": "[2.3.0,3.0)", - "Microsoft.Extensions.Logging": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final", - "Microsoft.Extensions.Logging.Filter": "1.0.0-rc2-final", - "xunit": "2.1.0", - "dotnet-test-xunit": "1.0.0-rc2-build10015" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)", + "Microsoft.Extensions.Logging": "1.0.0", + "Microsoft.Extensions.Logging.Console": "1.0.0", + "Microsoft.Extensions.Logging.Filter": "1.0.0", + "xunit": "2.2.0-beta2-build3300", + "dotnet-test-xunit": "2.2.0-preview2-build1029" } } diff --git a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure.Authentication/Properties/AssemblyInfo.cs b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure.Authentication/Properties/AssemblyInfo.cs index 22e58214ad..4b64238dfa 100644 --- a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure.Authentication/Properties/AssemblyInfo.cs +++ b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure.Authentication/Properties/AssemblyInfo.cs @@ -10,7 +10,7 @@ [assembly: AssemblyTitle("Microsoft Rest Azure Client Runtime Authentication")] [assembly: AssemblyDescription("Client authentication infrastructure for Azure client libraries.")] [assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.2.1.0")] +[assembly: AssemblyFileVersion("2.2.2.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft Corporation")] diff --git a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json index 9ed4e13975..15269e937e 100644 --- a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json +++ b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json @@ -1,5 +1,5 @@ { - "version": "2.2.1-preview", + "version": "2.2.2-preview", "title": "Authentication for Azure Management Clients", "description": "Provides ADAL based authentication for Azure management client libraries \nSupported Platforms:\n - Portable Class Libraries\n - .NET Framework 4.5\n - Windows 8\n - Windows Phone 8.1\n - DotNet Core", "authors": [ "Microsoft" ], @@ -21,7 +21,7 @@ }, "dependencies": { - "Microsoft.Rest.ClientRuntime": "[2.3.0,3.0)" + "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)" }, "frameworks": { diff --git a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure.Tests/project.json b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure.Tests/project.json index 6e6070c94b..e9c9cf4dd4 100644 --- a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure.Tests/project.json +++ b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure.Tests/project.json @@ -17,14 +17,14 @@ } }, "dependencies": { - "Microsoft.NETCore.App": { - "type": "platform", - "version": "1.0.0-rc2-*" + "Microsoft.NETCore.App": { + "type": "platform", + "version": "1.0.0" }, - "Microsoft.NETCore.Platforms": "1.0.1-rc2-24027", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.0,4.0.0)", - "Microsoft.Rest.ClientRuntime.Azure.Authentication": "[2.2.0-preview,3.0.0)", - "xunit": "2.1.0", - "dotnet-test-xunit": "1.0.0-rc2-build10015" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", + "Microsoft.Rest.ClientRuntime.Azure.Authentication": "[2.2.2-preview,3.0.0)", + "xunit": "2.2.0-beta2-build3300", + "dotnet-test-xunit": "2.2.0-preview2-build1029" } } diff --git a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure/Properties/AssemblyInfo.cs b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure/Properties/AssemblyInfo.cs index d94c95ed38..3a8a9195ab 100644 --- a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure/Properties/AssemblyInfo.cs +++ b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyTitle("Microsoft Rest Azure Client Runtime")] [assembly: AssemblyDescription("Client infrastructure for Azure client libraries.")] [assembly: AssemblyVersion("3.0.0.0")] -[assembly: AssemblyFileVersion("3.3.0.0")] +[assembly: AssemblyFileVersion("3.3.1.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft Corporation")] diff --git a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure/project.json b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure/project.json index c796338f1a..27dc461b50 100644 --- a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure/project.json +++ b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Azure/project.json @@ -1,5 +1,5 @@ { - "version": "3.3.0", + "version": "3.3.1", "copyright": "Copyright (c) Microsoft Corporation", "title": "Client Runtime for Microsoft Azure Libraries", "description": "Provides common error handling, tracing, and HTTP/REST-based pipeline manipulation. \nSupported Platforms:\n - Portable Class Libraries\n - .NET Framework 4.5\n - Windows 8\n - Windows Phone 8.1\n - DotNet Core", @@ -21,7 +21,7 @@ }, "dependencies": { - "Microsoft.Rest.ClientRuntime": "[2.3.0,3.0)" + "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)" }, "frameworks": { @@ -39,46 +39,44 @@ "buildOptions": { "define": [ "PORTABLE" ] }, "imports": ["dnxcore50", "portable-net45+win8"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc2-24027", - "Microsoft.NETCore.Runtime": "1.0.2-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tools": "4.0.1-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Net.Http": "4.0.1-rc2-24027", - "System.Net.Primitives": "4.0.11-rc2-24027", - "System.ObjectModel": "4.0.12-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Text.RegularExpressions": "4.0.12-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Xml.ReaderWriter": "4.0.11-rc2-24027", + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.ObjectModel": "4.0.12", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", } }, "netstandard1.5": { "buildOptions": { "define": [ "PORTABLE" ] }, "imports": ["dnxcore50"], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc2-24027", - "Microsoft.NETCore.Runtime": "1.0.2-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tools": "4.0.1-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Net.Http": "4.0.1-rc2-24027", - "System.Net.Primitives": "4.0.11-rc2-24027", - "System.ObjectModel": "4.0.12-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Text.RegularExpressions": "4.0.12-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Xml.ReaderWriter": "4.0.11-rc2-24027", + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.ObjectModel": "4.0.12", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", } } }, diff --git a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Etw/Properties/AssemblyInfo.cs b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Etw/Properties/AssemblyInfo.cs index 141a395fb0..69ee47abee 100644 --- a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Etw/Properties/AssemblyInfo.cs +++ b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Etw/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyTitle("Microsoft Rest Client Runtime ETW Logger")] [assembly: AssemblyDescription("Provides ETW tracing of \"Microsoft.Rest\" Client Library events.")] [assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.1.0.0")] +[assembly: AssemblyFileVersion("2.1.1.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft Corporation")] diff --git a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Etw/project.json b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Etw/project.json index e769b01397..d4e1f217c2 100644 --- a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Etw/project.json +++ b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Etw/project.json @@ -1,5 +1,5 @@ { - "version": "2.1.0-preview", + "version": "2.1.1-preview", "title": "ETW Logger for Microsoft AutoRest Generated Clients", "description": "Enables tracing of event messages for AutoRest generated client libraries events via ETW (Event Tracing for Windows). ETW events can be captured by subscribing to the \"Microsoft.Rest\" event source.", "copyright": "Copyright (c) Microsoft Corporation", @@ -21,7 +21,7 @@ }, "dependencies": { - "Microsoft.Rest.ClientRuntime": "[2.3.0,3.0.0)" + "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)" }, "frameworks": { diff --git a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Log4Net/Properties/AssemblyInfo.cs b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Log4Net/Properties/AssemblyInfo.cs index 3e0841bdaa..f0a53dff95 100644 --- a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Log4Net/Properties/AssemblyInfo.cs +++ b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Log4Net/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyTitle("Microsoft Rest Client Runtime Log4Net Logger")] [assembly: AssemblyDescription("Provides Log4Net logging of \"Microsoft.Rest\" Client Library events.")] [assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.1.0.0")] +[assembly: AssemblyFileVersion("2.1.1.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft Corporation")] diff --git a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Log4Net/project.json b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Log4Net/project.json index 54739f25ed..63a115d6c3 100644 --- a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Log4Net/project.json +++ b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Log4Net/project.json @@ -1,5 +1,5 @@ { - "version": "2.1.0-preview", + "version": "2.1.1-preview", "title": "Log4Net Logger for Microsoft AutoRest Generated Clients", "description": "Enables logging of event messages for AutoRest generated client libraries via Log4Net.", "copyright": "Copyright (c) Microsoft Corporation", @@ -20,7 +20,7 @@ }, "dependencies": { - "Microsoft.Rest.ClientRuntime": "[2.3.0,3.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.1,3.0)", "log4net": "2.0.3" }, diff --git a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Tests/project.json b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Tests/project.json index 6e6070c94b..e9c9cf4dd4 100644 --- a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Tests/project.json +++ b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Tests/project.json @@ -17,14 +17,14 @@ } }, "dependencies": { - "Microsoft.NETCore.App": { - "type": "platform", - "version": "1.0.0-rc2-*" + "Microsoft.NETCore.App": { + "type": "platform", + "version": "1.0.0" }, - "Microsoft.NETCore.Platforms": "1.0.1-rc2-24027", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.0,4.0.0)", - "Microsoft.Rest.ClientRuntime.Azure.Authentication": "[2.2.0-preview,3.0.0)", - "xunit": "2.1.0", - "dotnet-test-xunit": "1.0.0-rc2-build10015" + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", + "Microsoft.Rest.ClientRuntime.Azure.Authentication": "[2.2.2-preview,3.0.0)", + "xunit": "2.2.0-beta2-build3300", + "dotnet-test-xunit": "2.2.0-preview2-build1029" } } diff --git a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Tracing.Tests/project.json b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Tracing.Tests/project.json index 73403aa557..40426ea456 100644 --- a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Tracing.Tests/project.json +++ b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Tracing.Tests/project.json @@ -21,13 +21,12 @@ } }, "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc2-24027", - "Microsoft.NETCore.Runtime": "1.0.2-rc2-24027", + "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.41", - "Microsoft.Rest.ClientRuntime.Log4Net": "[2.1.0-preview,3.0.0)", - "Microsoft.Rest.ClientRuntime.Etw": "[2.1.0-preview,3.0.0)", + "Microsoft.Rest.ClientRuntime.Log4Net": "[2.1.1-preview,3.0.0)", + "Microsoft.Rest.ClientRuntime.Etw": "[2.1.1-preview,3.0.0)", "Newtonsoft.Json": "6.0.8", - "xunit": "2.1.0", - "dotnet-test-xunit": "1.0.0-rc2-build10015" + "xunit": "2.2.0-beta2-build3300", + "dotnet-test-xunit": "2.2.0-preview2-build1029" } } diff --git a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime/Properties/AssemblyInfo.cs b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime/Properties/AssemblyInfo.cs index 13ac37e679..b84e9db15e 100644 --- a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime/Properties/AssemblyInfo.cs +++ b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyTitle("Microsoft Rest Client Runtime")] [assembly: AssemblyDescription("Client infrastructure for client libraries generated by AutoRest.")] [assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.3.0.0")] +[assembly: AssemblyFileVersion("2.3.1.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft Corporation")] diff --git a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime/RetryDelegatingHandler.cs b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime/RetryDelegatingHandler.cs index c82e8ee668..a1fd09ae65 100644 --- a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime/RetryDelegatingHandler.cs +++ b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime/RetryDelegatingHandler.cs @@ -23,7 +23,7 @@ public class RetryDelegatingHandler : DelegatingHandler /// /// Initializes a new instance of the class. - /// Sets default retry policty base on Exponential Backoff. + /// Sets default retry policy base on Exponential Backoff. /// public RetryDelegatingHandler() { @@ -37,7 +37,7 @@ public RetryDelegatingHandler() /// /// Initializes a new instance of the class. Sets - /// the default retry policty base on Exponential Backoff. + /// the default retry policy base on Exponential Backoff. /// /// Inner http handler. public RetryDelegatingHandler(DelegatingHandler innerHandler) diff --git a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime/project.json b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime/project.json index d7afb3101c..b927a5b28a 100644 --- a/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime/project.json +++ b/ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime/project.json @@ -1,5 +1,5 @@ { - "version": "2.3.0", + "version": "2.3.1", "copyright": "Copyright (c) Microsoft Corporation", "title": "Client Runtime Library for Microsoft AutoRest Generated Clients", "description": "Infrastructure for error handling, tracing, and HttpClient pipeline configuration. Required by client libraries generated using AutoRest. \nSupported Platforms:\n - Portable Class Libraries\n - .NET Framework 4.5\n - Windows 8\n - Windows Phone 8.1\n - DotNet Core", @@ -31,58 +31,56 @@ "System.Runtime.Serialization": "", "System.Xml": "" }, - "dependencies": { - "Newtonsoft.Json": "6.0.8" - }, + "dependencies": { + "Newtonsoft.Json": "6.0.8" + }, }, "netstandard1.1": { "buildOptions": { "define": [ "PORTABLE" ] }, "imports": ["dnxcore50", "portable-net45+win8"], "dependencies": { - "Newtonsoft.Json": "8.0.3", - "Microsoft.NETCore.Platforms": "1.0.1-rc2-24027", - "Microsoft.NETCore.Runtime": "1.0.2-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tools": "4.0.1-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Linq.Expressions": "4.0.11-rc2-24027", - "System.Net.Http": "4.0.1-rc2-24027", - "System.Net.Primitives": "4.0.11-rc2-24027", - "System.ObjectModel": "4.0.12-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Text.RegularExpressions": "4.0.12-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Xml.ReaderWriter": "4.0.11-rc2-24027", + "Newtonsoft.Json": "[9.0.1,10.0)", + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.ObjectModel": "4.0.12", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", } }, "netstandard1.5": { "buildOptions": { "define": [ "PORTABLE" ] }, "imports": ["dnxcore50"], "dependencies": { - "Newtonsoft.Json": "8.0.3", - "Microsoft.NETCore.Platforms": "1.0.1-rc2-24027", - "Microsoft.NETCore.Runtime": "1.0.2-rc2-24027", - "System.Collections": "4.0.11-rc2-24027", - "System.Diagnostics.Debug": "4.0.11-rc2-24027", - "System.Diagnostics.Tools": "4.0.1-rc2-24027", - "System.Diagnostics.Tracing": "4.1.0-rc2-24027", - "System.Globalization": "4.0.11-rc2-24027", - "System.Linq": "4.1.0-rc2-24027", - "System.Linq.Expressions": "4.0.11-rc2-24027", - "System.Net.Http": "4.0.1-rc2-24027", - "System.Net.Primitives": "4.0.11-rc2-24027", - "System.ObjectModel": "4.0.12-rc2-24027", - "System.Reflection.Extensions": "4.0.1-rc2-24027", - "System.Resources.ResourceManager": "4.0.1-rc2-24027", - "System.Runtime.Extensions": "4.1.0-rc2-24027", - "System.Text.RegularExpressions": "4.0.12-rc2-24027", - "System.Threading": "4.0.11-rc2-24027", - "System.Xml.ReaderWriter": "4.0.11-rc2-24027", + "Newtonsoft.Json": "[9.0.1,10.0)", + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Diagnostics.Tracing": "4.1.0", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.Net.Http": "4.1.0", + "System.Net.Primitives": "4.0.11", + "System.ObjectModel": "4.0.12", + "System.Reflection.Extensions": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime.Extensions": "4.1.0", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11", } } } diff --git a/global.json b/global.json index 74ca124ccf..717a1521a2 100644 --- a/global.json +++ b/global.json @@ -9,9 +9,5 @@ "ClientRuntimes/CSharp/Microsoft.Rest.ClientRuntime.Tracing.Tests", "AutoRest/Generators/CSharp/CSharp.Tests", "AutoRest/Generators/CSharp/Azure.CSharp.Tests" - ], - "sdk": { - "runtime": "coreclr", - "version": "1.0.0-preview1-002702" - } + ] } \ No newline at end of file