Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Microsoft.Extensions.Logging.Abstractions from 8.0.0 to 8.0.1 #26

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>
Loading