-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump Microsoft.Extensions.Logging.Abstractions from 8.0.0 to 8.0.1 (#26)
Bumps [Microsoft.Extensions.Logging.Abstractions](https://github.com/dotnet/runtime) from 8.0.0 to 8.0.1. - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](dotnet/runtime@v8.0.0...v8.0.1) --- updated-dependencies: - dependency-name: Microsoft.Extensions.Logging.Abstractions dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
95c141f
commit 1b79493
Showing
1 changed file
with
43 additions
and
43 deletions.
There are no files selected for viewing
86 changes: 43 additions & 43 deletions
86
src/SimpleAzure.Storage.HybridQueues/SimpleAzure.Storage.HybridQueues.csproj
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,43 +1,43 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<AssemblyName>WorldDomination.$(MSBuildProjectName)</AssemblyName> | ||
<RootNamespace>WorldDomination.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace> | ||
<Title>Simple: Azure Storage Hybrid Queues</Title> | ||
<Company>World Domination Technolgoies Pty. Ltd.</Company> | ||
<Authors>Justin Adler</Authors> | ||
<Description> | ||
This client library enables working A Hybrid Queue: the concept of throwing anything onto a normal Queue and if the size of the Message (which contains your content) is too big, | ||
it then automatically puts your content into a Blob (which can contain any size**) and then stores the reference to the blob in the queue! | ||
</Description> | ||
<Product>Storage Hybrid Queue</Product> | ||
<Copyright>2023</Copyright> | ||
<PackageIcon>icon.jpg</PackageIcon> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<RepositoryUrl>https://github.com/PureKrome/WorldDomination.SimpleAzure.Storage.HybridQueues</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageTags>hybrid;queue;hybridqueue;azure;worlddomination;worldomination;unicorn;magicalunicorn;magical-unicorn</PackageTags> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\..\icon.jpg"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
<None Include="..\..\README.md"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Storage.Blobs" Version="12.19.1" /> | ||
<PackageReference Include="Azure.Storage.Queues" Version="12.17.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<AssemblyName>WorldDomination.$(MSBuildProjectName)</AssemblyName> | ||
<RootNamespace>WorldDomination.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace> | ||
<Title>Simple: Azure Storage Hybrid Queues</Title> | ||
<Company>World Domination Technolgoies Pty. Ltd.</Company> | ||
<Authors>Justin Adler</Authors> | ||
<Description> | ||
This client library enables working A Hybrid Queue: the concept of throwing anything onto a normal Queue and if the size of the Message (which contains your content) is too big, | ||
it then automatically puts your content into a Blob (which can contain any size**) and then stores the reference to the blob in the queue! | ||
</Description> | ||
<Product>Storage Hybrid Queue</Product> | ||
<Copyright>2023</Copyright> | ||
<PackageIcon>icon.jpg</PackageIcon> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<RepositoryUrl>https://github.com/PureKrome/WorldDomination.SimpleAzure.Storage.HybridQueues</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageTags>hybrid;queue;hybridqueue;azure;worlddomination;worldomination;unicorn;magicalunicorn;magical-unicorn</PackageTags> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\..\icon.jpg"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
<None Include="..\..\README.md"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Azure.Storage.Blobs" Version="12.19.1" /> | ||
<PackageReference Include="Azure.Storage.Queues" Version="12.17.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" /> | ||
</ItemGroup> | ||
|
||
</Project> |