|
4 | 4 | <LangVersion>latest</LangVersion>
|
5 | 5 | <AssemblyTitle>RedisInMemory</AssemblyTitle>
|
6 | 6 | <Product>RedisInMemory</Product>
|
7 |
| - <Copyright>Copyright © 2023</Copyright> |
| 7 | + <Copyright>Copyright © 2023 Neutral Labs Inc.</Copyright> |
8 | 8 | <OutputPath>bin\$(Configuration)\</OutputPath>
|
9 | 9 | <Version>0.4.0</Version>
|
| 10 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
10 | 11 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
11 |
| - <Authors>johnnycardy, stepaside, Neutral Labs</Authors> |
12 |
| - <PackageLicenseUrl>https://raw.githubusercontent.com/Neutral/redis-in-memory/master/LICENSE</PackageLicenseUrl> |
13 |
| - <PackageProjectUrl>https://github.com/Neutral/redis-in-memory</PackageProjectUrl> |
| 12 | + <Authors>johnnycardy, stepaside, Neutral Labs Inc.</Authors> |
| 13 | + <PackageLicenseFile>LICENSE</PackageLicenseFile> |
| 14 | + <PackageProjectUrl>https://github.com/neutral-protocol/redis-in-memory</PackageProjectUrl> |
| 15 | + <RepositoryUrl>https://github.com/neutral-protocol/redis-in-memory.git</RepositoryUrl> |
14 | 16 | <Description>In-Memory .NET StackExchange.Redis library. This library implements the `StackExchange.Redis.IDatabase` interface to provide a test double for your .NET applications using Redis.</Description>
|
15 |
| - <Company>Jonathan Cardy, Neutral Labs</Company> |
| 17 | + <PackageTags>redis,in-memory,embedded,in-process,integration,tests,testing,test,integration-testing,integration-tests,test-double,database,cache,async,mock,redis-mock</PackageTags> |
| 18 | + <Company>Neutral Labs Inc.</Company> |
16 | 19 | </PropertyGroup>
|
17 | 20 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
18 | 21 | <DebugType>full</DebugType>
|
19 | 22 | </PropertyGroup>
|
20 | 23 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
21 | 24 | <DebugType>pdbonly</DebugType>
|
22 | 25 | </PropertyGroup>
|
| 26 | + <ItemGroup> |
| 27 | + <None Include="..\README.md" Pack="true" PackagePath="\"/> |
| 28 | + <None Include="..\LICENSE" Pack="true" PackagePath="\"/> |
| 29 | + </ItemGroup> |
23 | 30 | <ItemGroup>
|
24 | 31 | <PackageReference Include="StackExchange.Redis" Version="2.6.116" />
|
25 | 32 | <PackageReference Include="System.Runtime.Caching" Version="7.0.0" />
|
|
0 commit comments