-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps): bump MySqlConnector from 2.3.5 to 2.3.6
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
1 parent
315eda3
commit 1409b0f
Showing
3 changed files
with
85 additions
and
1 deletion.
There are no files selected for viewing
Submodule Caching-MySQL
deleted from
852197
36 changes: 36 additions & 0 deletions
36
Caching-MySQL/src/Pomelo.Extensions.Caching.MySql/Pomelo.Extensions.Caching.MySql.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 |
---|---|---|
@@ -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> |
49 changes: 49 additions & 0 deletions
49
...o.Extensions.Caching.MySqlConfig.Tools/Pomelo.Extensions.Caching.MySqlConfig.Tools.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 |
---|---|---|
@@ -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> |