-
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.
Merge pull request #1 from june-it/develop
Add. NET framework version and Nuget tags
- Loading branch information
Showing
2 changed files
with
42 additions
and
42 deletions.
There are no files selected for viewing
81 changes: 41 additions & 40 deletions
81
src/MyStack.DistributedLock4Redis/MyStack.DistributedLock4Redis.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,46 +1,47 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Nullable>enable</Nullable> | ||
<TargetFramework>netstandard2.1</TargetFramework> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<Title>MyStack.DistributedLock4Redis</Title> | ||
<Version>1.0.7</Version> | ||
<Authors>Jun Wan</Authors> | ||
<Company>Jun Wan</Company> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<PackageReadmeFile>NUGET.md</PackageReadmeFile> | ||
<Description>Open-source Lightweight Distributed Lock Library (Based on Redis)</Description> | ||
<RootNamespace>Microsoft.Extensions.DistributedLock4Redis</RootNamespace> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<RepositoryUrl>https://github.com/june-it/MyStack.DistributedLock4Redis.git</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<GenerateDocumentationFile>True</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<Nullable>enable</Nullable> | ||
<TargetFrameworks>netstandard2.1;net6.0;net7.0;net8.0</TargetFrameworks> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<Title>MyStack.DistributedLock4Redis</Title> | ||
<Version>1.0.8</Version> | ||
<Authors>Jun Wan</Authors> | ||
<Company>Jun Wan</Company> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<PackageReadmeFile>NUGET.md</PackageReadmeFile> | ||
<Description>Open-source Lightweight Distributed Lock Library (Based on Redis)</Description> | ||
<RootNamespace>Microsoft.Extensions.DistributedLock4Redis</RootNamespace> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<RepositoryUrl>https://github.com/june-it/MyStack.DistributedLock4Redis.git</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<GenerateDocumentationFile>True</GenerateDocumentationFile> | ||
<PackageTags>MyStack;Redis;Distributed Lock</PackageTags> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<NoWarn>1701;1702;1591</NoWarn> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<NoWarn>1701;1702;1591</NoWarn> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
<NoWarn>1701;1702;1591</NoWarn> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
<NoWarn>1701;1702;1591</NoWarn> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\..\icon.png"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
<None Include="..\..\NUGET.md"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="CSRedisCore" Version="3.8.801" /> | ||
<PackageReference Include="Microsoft.Extensions.Options" Version="2.1.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="2.1.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="2.1.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Configuration" Version="2.1.1" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\..\icon.png"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
<None Include="..\..\NUGET.md"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="CSRedisCore" Version="3.8.801" /> | ||
<PackageReference Include="Microsoft.Extensions.Options" Version="2.1.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="2.1.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="2.1.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Configuration" Version="2.1.1" /> | ||
</ItemGroup> | ||
</Project> |
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