Skip to content

Commit

Permalink
Merge pull request #861 from microsoftgraph/dependabot/nuget/kiota-de…
Browse files Browse the repository at this point in the history
…pendencies-999595bb46

chore(deps): bump the kiota-dependencies group across 3 directories with 4 updates
  • Loading branch information
baywet authored Aug 2, 2024
2 parents 6716429 + 1c4b18d commit a6b5ace
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 45 deletions.
38 changes: 0 additions & 38 deletions appveyor.yml

This file was deleted.

1 change: 1 addition & 0 deletions pipelines/productionBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ extends:
echo "##vso[task.setvariable variable=JAVA_HOME]$(JAVA_HOME_11_X64)"
echo "##vso[task.setvariable variable=PATH]$(JAVA_HOME_11_X64)\bin;$(PATH)"
- task: PowerShell@2
condition: and(contains(variables['build.sourceBranch'], 'refs/heads/master'), succeeded())
displayName: 'Validate updated version'
inputs:
targetType: filePath
Expand Down
12 changes: 6 additions & 6 deletions src/Microsoft.Graph.Core/Microsoft.Graph.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@
<ItemGroup>
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="8.0.1" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.10.0" />
<PackageReference Include="Microsoft.Kiota.Authentication.Azure" Version="1.10.0" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.10.0" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.9.11" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.9.11" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.10.0" />
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.10.1" />
<PackageReference Include="Microsoft.Kiota.Authentication.Azure" Version="1.10.1" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.10.1" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.10.1" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.10.1" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.10.1" />
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.9.11" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' ">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@
// ------------------------------------------------------------------------------


using System.Runtime.Serialization;

namespace Microsoft.Graph.DotnetCore.Core.Test.TestModels
{
/// <summary>
/// Enum for testing enum serialization and deserialization.
/// </summary>
public enum EnumType
{
[EnumMember(Value = "value")]
Value,
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
// ------------------------------------------------------------------------------


using System.Runtime.Serialization;

namespace Microsoft.Graph.DotnetCore.Core.Test.TestModels
{
/// <summary>
Expand All @@ -11,8 +13,9 @@ namespace Microsoft.Graph.DotnetCore.Core.Test.TestModels
[System.Flags]
public enum EnumTypeWithFlags
{
[EnumMember(Value = "firstValue")]
FirstValue = 1,

[EnumMember(Value = "secondValue")]
SecondValue = 2
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

using System.Runtime.Serialization;

namespace Microsoft.Graph.DotnetCore.Core.Test.TestModels.ServiceModels
{
/// <summary>
Expand All @@ -13,11 +15,13 @@ public enum TestBodyType
/// <summary>
/// Text
/// </summary>
[EnumMember(Value = "text")]
Text = 0,

/// <summary>
/// Html
/// </summary>
[EnumMember(Value = "html")]
Html = 1,

}
Expand Down

0 comments on commit a6b5ace

Please sign in to comment.