-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump KubernetesClient.Basic, KubernetesClient.Models and YamlDotNet
Bumps [KubernetesClient.Basic](https://github.com/kubernetes-client/csharp), [KubernetesClient.Models](https://github.com/kubernetes-client/csharp) and [YamlDotNet](https://github.com/aaubry/YamlDotNet). These dependencies needed to be updated together. Updates `KubernetesClient.Basic` from 11.0.9 to 12.0.16 - [Release notes](https://github.com/kubernetes-client/csharp/releases) - [Commits](kubernetes-client/csharp@v11.0.9...v12.0.16) Updates `KubernetesClient.Models` from 11.0.9 to 12.0.16 - [Release notes](https://github.com/kubernetes-client/csharp/releases) - [Commits](kubernetes-client/csharp@v11.0.9...v12.0.16) Updates `YamlDotNet` from 13.1.0 to 13.3.1 - [Release notes](https://github.com/aaubry/YamlDotNet/releases) - [Commits](aaubry/YamlDotNet@v13.1.0...v13.3.1) --- updated-dependencies: - dependency-name: KubernetesClient.Basic dependency-type: direct:production update-type: version-update:semver-major - dependency-name: KubernetesClient.Models dependency-type: direct:production update-type: version-update:semver-major - dependency-name: YamlDotNet dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
- Loading branch information
1 parent
bce9da6
commit 891d27d
Showing
1 changed file
with
75 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,76 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net7.0</TargetFrameworks> | ||
<AssemblyName>Microsoft.BridgeToKubernetes.Common</AssemblyName> | ||
<RuntimeIdentifiers>win-x64;win-arm64;osx-x64;osx-arm64;linux-x64;linux-arm64</RuntimeIdentifiers> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> | ||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
<RootNamespace>Microsoft.BridgeToKubernetes.Common</RootNamespace> | ||
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)..\..\build\FinalPublicKey.snk</AssemblyOriginatorKeyFile> | ||
<SignAssembly>true</SignAssembly> | ||
<DelaySign>true</DelaySign> | ||
<TrimUnusedDependencies>true</TrimUnusedDependencies> | ||
<HighEntropyVA>True</HighEntropyVA> | ||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild> | ||
<DocumentationFile>bin\Microsoft.BridgeToKubernetes.Common.xml</DocumentationFile> | ||
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright> | ||
<Authors>Microsoft</Authors> | ||
</PropertyGroup> | ||
|
||
<!--PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0|AnyCPU'"> | ||
<CodeAnalysisRuleSet>..\mindaro.ruleset</CodeAnalysisRuleSet> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net7.0|AnyCPU'"> | ||
<CodeAnalysisRuleSet /> | ||
</PropertyGroup--> | ||
|
||
<!-- NOTE: This converts the TelemetryType environment variable defined in the build pipeline into the TELEMETRY_STAGING, TELEMETRY_PRODUCTION, TELEMETRY_DEVELOPMENT constants used in src\common\Constants.cs --> | ||
<PropertyGroup> | ||
<DefineConstants>$(DefineConstants);$(TelemetryType)</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0|AnyCPU'"> | ||
<NoWarn>8002</NoWarn> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Update="CommonResources.Designer.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>CommonResources.resx</DependentUpon> | ||
</Compile> | ||
<EmbeddedResource Update="CommonResources.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
<LastGenOutput>CommonResources.Designer.cs</LastGenOutput> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<FrameworkReference Include="Microsoft.AspNetCore.App" /> | ||
<PackageReference Include="Autofac" Version="6.4.0" /> | ||
<PackageReference Include="KubernetesClient" Version="11.0.9" /> | ||
<PackageReference Include="KubernetesClient.Basic" Version="11.0.9" /> | ||
<PackageReference Include="KubernetesClient.Models" Version="11.0.9" /> | ||
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.21.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="7.0.5" /> | ||
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="7.0.5" /> | ||
<PackageReference Include="Microsoft.Build.Runtime" Version="17.5.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.Extensions.CommandLineUtils" Version="1.1.1" /> | ||
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.0" /> | ||
<PackageReference Include="Microsoft.VisualStudioEng.MicroBuild.Core" Version="1.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
|
||
<PackageReference Include="SystemTextJsonPatch" Version="1.0.0" /> | ||
</ItemGroup> | ||
|
||
<Import Project="$(MSBuildThisFileDirectory)\..\..\build\ClientAssemblyVersion.proj" /> | ||
<Import Project="$(MSBuildThisFileDirectory)\..\..\build\AssemblyVersion.proj" /> | ||
<Import Project="$(MSBuildThisFileDirectory)\..\..\build\localization.targets" /> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net7.0</TargetFrameworks> | ||
<AssemblyName>Microsoft.BridgeToKubernetes.Common</AssemblyName> | ||
<RuntimeIdentifiers>win-x64;win-arm64;osx-x64;osx-arm64;linux-x64;linux-arm64</RuntimeIdentifiers> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> | ||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
<RootNamespace>Microsoft.BridgeToKubernetes.Common</RootNamespace> | ||
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)..\..\build\FinalPublicKey.snk</AssemblyOriginatorKeyFile> | ||
<SignAssembly>true</SignAssembly> | ||
<DelaySign>true</DelaySign> | ||
<TrimUnusedDependencies>true</TrimUnusedDependencies> | ||
<HighEntropyVA>True</HighEntropyVA> | ||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild> | ||
<DocumentationFile>bin\Microsoft.BridgeToKubernetes.Common.xml</DocumentationFile> | ||
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright> | ||
<Authors>Microsoft</Authors> | ||
</PropertyGroup> | ||
|
||
<!--PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0|AnyCPU'"> | ||
<CodeAnalysisRuleSet>..\mindaro.ruleset</CodeAnalysisRuleSet> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net7.0|AnyCPU'"> | ||
<CodeAnalysisRuleSet /> | ||
</PropertyGroup--> | ||
|
||
<!-- NOTE: This converts the TelemetryType environment variable defined in the build pipeline into the TELEMETRY_STAGING, TELEMETRY_PRODUCTION, TELEMETRY_DEVELOPMENT constants used in src\common\Constants.cs --> | ||
<PropertyGroup> | ||
<DefineConstants>$(DefineConstants);$(TelemetryType)</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0|AnyCPU'"> | ||
<NoWarn>8002</NoWarn> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Update="CommonResources.Designer.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>CommonResources.resx</DependentUpon> | ||
</Compile> | ||
<EmbeddedResource Update="CommonResources.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
<LastGenOutput>CommonResources.Designer.cs</LastGenOutput> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<FrameworkReference Include="Microsoft.AspNetCore.App" /> | ||
<PackageReference Include="Autofac" Version="6.4.0" /> | ||
<PackageReference Include="KubernetesClient" Version="11.0.9" /> | ||
<PackageReference Include="KubernetesClient.Basic" Version="12.0.16" /> | ||
<PackageReference Include="KubernetesClient.Models" Version="12.0.16" /> | ||
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.21.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="7.0.5" /> | ||
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="7.0.5" /> | ||
<PackageReference Include="Microsoft.Build.Runtime" Version="17.5.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.Extensions.CommandLineUtils" Version="1.1.1" /> | ||
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.0" /> | ||
<PackageReference Include="Microsoft.VisualStudioEng.MicroBuild.Core" Version="1.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
|
||
<PackageReference Include="SystemTextJsonPatch" Version="1.0.0" /> | ||
</ItemGroup> | ||
|
||
<Import Project="$(MSBuildThisFileDirectory)\..\..\build\ClientAssemblyVersion.proj" /> | ||
<Import Project="$(MSBuildThisFileDirectory)\..\..\build\AssemblyVersion.proj" /> | ||
<Import Project="$(MSBuildThisFileDirectory)\..\..\build\localization.targets" /> | ||
</Project> |