Skip to content

Commit

Permalink
Merge pull request #135 from microsoft/vpl/upgrade-sdk
Browse files Browse the repository at this point in the history
Vpl/upgrade sdk
  • Loading branch information
vplauzon authored May 11, 2023
2 parents 7bf959c + a09daa4 commit 2c46187
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Identity.Client" Version="4.44.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CsvHelper" Version="27.2.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
Expand Down
4 changes: 2 additions & 2 deletions code/DeltaKustoIntegration/DeltaKustoIntegration.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CsvHelper" Version="27.2.1" />
<PackageReference Include="Microsoft.Azure.Kusto.Data" Version="10.0.3" />
<PackageReference Include="CsvHelper" Version="30.0.1" />
<PackageReference Include="Microsoft.Azure.Kusto.Data" Version="10.1.3" />
<PackageReference Include="Polly" Version="7.2.3" />
</ItemGroup>

Expand Down
6 changes: 6 additions & 0 deletions code/delta-kusto/DeltaOrchestration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
using DeltaKustoLib.CommandModel;
using DeltaKustoLib.KustoModel;
using Kusto.Data.Common;
using Kusto.Data.Common.Impl;
using Newtonsoft.Json.Serialization;
using System;
using System.Collections.Generic;
Expand All @@ -30,6 +31,11 @@ internal class DeltaOrchestration
private readonly ApiClient _apiClient;
private readonly IFileGateway _fileGateway;

static DeltaOrchestration()
{
KustoTrustedEndpoints.SetOverridePolicy(domain => true);
}

public DeltaOrchestration(
ITracer tracer,
ApiClient apiClient,
Expand Down
2 changes: 1 addition & 1 deletion code/delta-kusto/delta-kusto.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>delta_kusto</RootNamespace>
<Nullable>enable</Nullable>
<Version>0.13.1</Version>
<Version>0.13.2</Version>
<!-- Avoid having each library being trimmed (instead of only opt-in ones) -->
<TrimMode>partial</TrimMode>
<!-- Important to avoid the trimming warning hell ; since we automate-test everything, we do not need static analysis -->
Expand Down

0 comments on commit 2c46187

Please sign in to comment.