Skip to content

Commit

Permalink
build(deps): bump MySqlConnector from 2.3.5 to 2.3.6
Browse files Browse the repository at this point in the history
Bumps MySqlConnector from 2.3.5 to 2.3.6.

---
updated-dependencies:
- dependency-name: MySqlConnector
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Mar 21, 2024
1 parent 315eda3 commit 1409b0f
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 1 deletion.
1 change: 0 additions & 1 deletion Caching-MySQL
Submodule Caching-MySQL deleted from 852197
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Description>Distributed cache implementation of Microsoft.Extensions.Caching.Distributed.IDistributedCache using MySql.</Description>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>Pomelo.Extensions.Caching.MySql</AssemblyName>
<PackageId>Pomelo.Extensions.Caching.MySql</PackageId>
<PackageTags>cache;distributedcache;mysql</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/pomelofoundation/caching-mysql</RepositoryUrl>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<Version>2.1.5</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Pomelo.snk</AssemblyOriginatorKeyFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.2" />
<PackageReference Include="MySqlConnector" Version="2.3.6" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Description>Command line tool to create tables and indexes in a MySql Server database for distributed caching.</Description>
<TargetFramework>net8.0</TargetFramework>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyName>dotnet-mysql-cache</AssemblyName>
<OutputType>Exe</OutputType>
<PublicSign>false</PublicSign>
<PackageId>Pomelo.Extensions.Caching.MySqlConfig.Tools</PackageId>
<PackageTags>cache;distributedcache;mysql</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/PomeloFoundation/Caching-MySQL</RepositoryUrl>
<GenerateNeutralResourcesLanguageAttribute>false</GenerateNeutralResourcesLanguageAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<RootNamespace>Pomelo.Extensions.Caching.MySqlConfig.Tools</RootNamespace>
<Version>2.1.5</Version>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<AssemblyVersion>2.1.5.0</AssemblyVersion>
<IsPackable>true</IsPackable>
<ToolCommandName>dotnet-mysql-cache</ToolCommandName>
<PackAsTool>true</PackAsTool>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Pomelo.snk</AssemblyOriginatorKeyFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG</DefineConstants>
<OutputPath>bin\Debug\</OutputPath>
<DocumentationFile>obj\Debug\dotnet-mysql-cache.xml</DocumentationFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.CommandLineUtils" Version="1.1.1" />
<PackageReference Include="MySqlConnector" Version="2.3.6" />
</ItemGroup>

</Project>

0 comments on commit 1409b0f

Please sign in to comment.