Skip to content

Commit dcaa074

Browse files
committed
config: update nuget package config
1 parent 0d89000 commit dcaa074

5 files changed

Lines changed: 50 additions & 12 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ obj/
33
/packages/
44
riderModule.iml
55
/_ReSharper.Caches/
6-
.idea
6+
.idea
7+
.vs

CacheManager.csproj

Lines changed: 24 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<Title>CacheManager</Title>
99
<Authors>MHKarami97</Authors>
10-
<Description>CacheManager</Description>
10+
<Description>Easy Cache Manager</Description>
1111
<Copyright>https://github.com/MHKarami97/CacheManager</Copyright>
1212
<PackageProjectUrl>https://github.com/MHKarami97/CacheManager</PackageProjectUrl>
13-
<PackageLicenseUrl>https://github.com/MHKarami97/CacheManager</PackageLicenseUrl>
1413
<PackageIcon>icon.jpg</PackageIcon>
1514
<RepositoryUrl>https://github.com/MHKarami97/CacheManager</RepositoryUrl>
1615
<RepositoryType>public</RepositoryType>
@@ -21,6 +20,10 @@
2120
<SignAssembly>true</SignAssembly>
2221
<AssemblyOriginatorKeyFile>MHKarami97.snk</AssemblyOriginatorKeyFile>
2322
<PublicSign>true</PublicSign>
23+
<PackageId>EasyMultiCacheManager</PackageId>
24+
<PackageReadmeFile>README.md</PackageReadmeFile>
25+
<ApplicationIcon>icon.ico</ApplicationIcon>
26+
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
2427
</PropertyGroup>
2528

2629
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
@@ -32,23 +35,30 @@
3235
</PropertyGroup>
3336

3437
<ItemGroup>
35-
<None Remove="README.md"/>
36-
<None Remove="MHKarami97.snk"/>
37-
<None Remove=".gitignore"/>
38+
<None Remove="MHKarami97.snk" />
39+
<None Remove=".gitignore" />
3840
<None Update="icon.jpg">
3941
<Pack>True</Pack>
4042
<PackagePath></PackagePath>
4143
</None>
44+
<None Update="LICENSE.txt">
45+
<Pack>True</Pack>
46+
<PackagePath>\</PackagePath>
47+
</None>
48+
<None Update="README.md">
49+
<Pack>True</Pack>
50+
<PackagePath>\</PackagePath>
51+
</None>
4252
<None Remove="CacheManagerUnitTest\**" />
4353
</ItemGroup>
4454

4555
<ItemGroup>
4656
<PackageReference Include="AsyncKeyedLock" Version="7.1.3" />
47-
<PackageReference Include="Dapper" Version="2.1.35"/>
48-
<PackageReference Include="Flurl.Http" Version="4.0.2"/>
49-
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.2"/>
50-
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1"/>
51-
<PackageReference Include="StackExchange.Redis" Version="2.8.16"/>
57+
<PackageReference Include="Dapper" Version="2.1.35" />
58+
<PackageReference Include="Flurl.Http" Version="4.0.2" />
59+
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.2" />
60+
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1" />
61+
<PackageReference Include="StackExchange.Redis" Version="2.8.16" />
5262
</ItemGroup>
5363

5464
<ItemGroup>
@@ -59,4 +69,8 @@
5969
<EmbeddedResource Remove="CacheManagerUnitTest\**" />
6070
</ItemGroup>
6171

72+
<ItemGroup>
73+
<Content Include="icon.ico" />
74+
</ItemGroup>
75+
6276
</Project>

CacheManager.sln

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution", "Solution", "{FD
66
ProjectSection(SolutionItems) = preProject
77
.github\workflows\dotnet.yml = .github\workflows\dotnet.yml
88
.gitignore = .gitignore
9-
icon.jpg = icon.jpg
109
MHKarami97.snk = MHKarami97.snk
1110
README.md = README.md
11+
LICENSE.txt = LICENSE.txt
12+
icon.ico = icon.ico
13+
icon.jpg = icon.jpg
1214
EndProjectSection
1315
EndProject
1416
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CacheManagerUnitTest", "CacheManagerUnitTest\CacheManagerUnitTest.csproj", "{11A397C0-ECD3-4734-B5F5-E80037190D6D}"

LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Mohammad Hossein Karami
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

icon.ico

422 KB
Binary file not shown.

0 commit comments

Comments
 (0)