Skip to content

Commit

Permalink
Merge pull request #193 from thompson-tomo/chore/#191_DependencyOptim…
Browse files Browse the repository at this point in the history
…isation&Bump

#191 Optimise Dependencies
  • Loading branch information
andrueastman committed Apr 19, 2024
2 parents 47a4ce8 + 91dba46 commit 79cda04
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.5] - 2024-04-19
- Have made System.Diagnostics.DiagnosticSource only be included on Net Standard's TFM & net 5 (https://github.com/microsoft/kiota-authentication-azure-dotnet/issues/191)

## [1.1.4] - 2024-02-26

### Added
Expand Down
9 changes: 7 additions & 2 deletions src/Microsoft.Kiota.Authentication.Azure.csproj
Expand Up @@ -6,6 +6,7 @@
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<AssemblyTitle>Kiota Azure Identity Authentication Library for dotnet</AssemblyTitle>
<Authors>Microsoft</Authors>
<!-- NET 5 target to be removed on next major version-->
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0;net6.0;net8.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
Expand All @@ -14,7 +15,7 @@
<PackageProjectUrl>https://aka.ms/kiota/docs</PackageProjectUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Deterministic>true</Deterministic>
<VersionPrefix>1.1.4</VersionPrefix>
<VersionPrefix>1.1.5</VersionPrefix>
<VersionSuffix></VersionSuffix>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down Expand Up @@ -44,7 +45,11 @@
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="Azure.Core" Version="1.38.0" />
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.8.1" />
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.8.3" />
</ItemGroup>

<!-- NET 5 target to be removed on next major version-->
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0' or '$(TargetFramework)'== 'netStandard2.0' or '$(TargetFramework)' == 'netStandard2.1'">
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="[6.0.1,9.0)" />
</ItemGroup>

Expand Down

0 comments on commit 79cda04

Please sign in to comment.