Skip to content

Commit 1330fe9

Browse files
committed
update package metadata
1 parent defb0af commit 1330fe9

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
The MIT License (MIT)
22

33
Copyright (c) 2015 Jonathan Cardy
4-
Copyright (c) 2023 Neutral Labs
4+
Copyright (c) 2023 Neutral Labs Inc.
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

RedisInMemory/RedisInMemory.csproj

+12-5
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,29 @@
44
<LangVersion>latest</LangVersion>
55
<AssemblyTitle>RedisInMemory</AssemblyTitle>
66
<Product>RedisInMemory</Product>
7-
<Copyright>Copyright © 2023</Copyright>
7+
<Copyright>Copyright © 2023 Neutral Labs Inc.</Copyright>
88
<OutputPath>bin\$(Configuration)\</OutputPath>
99
<Version>0.4.0</Version>
10+
<PackageReadmeFile>README.md</PackageReadmeFile>
1011
<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>
1416
<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>
1619
</PropertyGroup>
1720
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1821
<DebugType>full</DebugType>
1922
</PropertyGroup>
2023
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2124
<DebugType>pdbonly</DebugType>
2225
</PropertyGroup>
26+
<ItemGroup>
27+
<None Include="..\README.md" Pack="true" PackagePath="\"/>
28+
<None Include="..\LICENSE" Pack="true" PackagePath="\"/>
29+
</ItemGroup>
2330
<ItemGroup>
2431
<PackageReference Include="StackExchange.Redis" Version="2.6.116" />
2532
<PackageReference Include="System.Runtime.Caching" Version="7.0.0" />

0 commit comments

Comments
 (0)