Skip to content

Commit a6b5ace

Browse files
authored
Merge pull request #861 from microsoftgraph/dependabot/nuget/kiota-dependencies-999595bb46
chore(deps): bump the kiota-dependencies group across 3 directories with 4 updates
2 parents 6716429 + 1c4b18d commit a6b5ace

File tree

6 files changed

+18
-45
lines changed

6 files changed

+18
-45
lines changed

appveyor.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

pipelines/productionBuild.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ extends:
6565
echo "##vso[task.setvariable variable=JAVA_HOME]$(JAVA_HOME_11_X64)"
6666
echo "##vso[task.setvariable variable=PATH]$(JAVA_HOME_11_X64)\bin;$(PATH)"
6767
- task: PowerShell@2
68+
condition: and(contains(variables['build.sourceBranch'], 'refs/heads/master'), succeeded())
6869
displayName: 'Validate updated version'
6970
inputs:
7071
targetType: filePath

src/Microsoft.Graph.Core/Microsoft.Graph.Core.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@
6464
<ItemGroup>
6565
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="8.0.1" />
6666
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
67-
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.10.0" />
68-
<PackageReference Include="Microsoft.Kiota.Authentication.Azure" Version="1.10.0" />
69-
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.10.0" />
70-
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.9.11" />
71-
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.9.11" />
72-
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.10.0" />
67+
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.10.1" />
68+
<PackageReference Include="Microsoft.Kiota.Authentication.Azure" Version="1.10.1" />
69+
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.10.1" />
70+
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.10.1" />
71+
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.10.1" />
72+
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.10.1" />
7373
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.9.11" />
7474
</ItemGroup>
7575
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' ">

tests/Microsoft.Graph.DotnetCore.Core.Test/TestModels/EnumType.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@
33
// ------------------------------------------------------------------------------
44

55

6+
using System.Runtime.Serialization;
7+
68
namespace Microsoft.Graph.DotnetCore.Core.Test.TestModels
79
{
810
/// <summary>
911
/// Enum for testing enum serialization and deserialization.
1012
/// </summary>
1113
public enum EnumType
1214
{
15+
[EnumMember(Value = "value")]
1316
Value,
1417
}
1518
}

tests/Microsoft.Graph.DotnetCore.Core.Test/TestModels/EnumTypeWithFlags.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
// ------------------------------------------------------------------------------
44

55

6+
using System.Runtime.Serialization;
7+
68
namespace Microsoft.Graph.DotnetCore.Core.Test.TestModels
79
{
810
/// <summary>
@@ -11,8 +13,9 @@ namespace Microsoft.Graph.DotnetCore.Core.Test.TestModels
1113
[System.Flags]
1214
public enum EnumTypeWithFlags
1315
{
16+
[EnumMember(Value = "firstValue")]
1417
FirstValue = 1,
15-
18+
[EnumMember(Value = "secondValue")]
1619
SecondValue = 2
1720
}
1821
}

tests/Microsoft.Graph.DotnetCore.Core.Test/TestModels/ServiceModels/TestBodyType.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
33
// ------------------------------------------------------------------------------
44

5+
using System.Runtime.Serialization;
6+
57
namespace Microsoft.Graph.DotnetCore.Core.Test.TestModels.ServiceModels
68
{
79
/// <summary>
@@ -13,11 +15,13 @@ public enum TestBodyType
1315
/// <summary>
1416
/// Text
1517
/// </summary>
18+
[EnumMember(Value = "text")]
1619
Text = 0,
1720

1821
/// <summary>
1922
/// Html
2023
/// </summary>
24+
[EnumMember(Value = "html")]
2125
Html = 1,
2226

2327
}

0 commit comments

Comments
 (0)