Skip to content

Commit d3469d5

Browse files
author
Nicholas Myers
committed
nuget updates
1 parent c280a3a commit d3469d5

2 files changed

Lines changed: 17 additions & 3 deletions

File tree

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ build_script:
1111
- ps: .\build.ps1
1212
test: off
1313
artifacts:
14-
- path: .\artifacts\**\*.nupkg
14+
- path: .\output\**\*.nupkg
1515
name: NuGet
1616
deploy:
1717
- provider: NuGet
@@ -27,4 +27,4 @@ deploy:
2727
secure: LETsd+PTuBvLDx2FdbTtP/gbsYonG2uh/gT7BVG2ZNU1RZBZ7UNJ/uXlpB5/ztKv
2828
on:
2929
branch: master
30-
appveyor_repo_tag: true
30+
appveyor_repo_tag: true

src/Cacheable/Cacheable.csproj

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
</PropertyGroup>
66

7+
<PropertyGroup>
8+
<Description>A light weight caching framework for MediatR</Description>
9+
<Copyright>Copyright Nicholas Myers</Copyright>
10+
<VersionPrefix>0.1.0</VersionPrefix>
11+
<Authors>Nicholas Myers</Authors>
12+
<TargetFramework>netstandard2.0</TargetFramework>
13+
<AssemblyName>Cacheable</AssemblyName>
14+
<PackageId>Cacheable</PackageId>
15+
<PackageTags>caching;request;requesthandlers</PackageTags>
16+
<PackageProjectUrl>https://github.com/neekgreen/cacheable</PackageProjectUrl>
17+
<RepositoryType>git</RepositoryType>
18+
<RepositoryUrl>git://github.com/neekgreen/cacheable</RepositoryUrl>
19+
</PropertyGroup>
20+
721
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
822
<OutputPath>bin\</OutputPath>
923
</PropertyGroup>
@@ -14,4 +28,4 @@
1428
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="2.0.0" />
1529
</ItemGroup>
1630

17-
</Project>
31+
</Project>

0 commit comments

Comments
 (0)