Skip to content

Commit

Permalink
Add PackageProjetUrl to make github happy, add dockerfile for benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
neon-sunset committed Oct 11, 2022
1 parent b88a278 commit 4e54d1c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
11 changes: 11 additions & 0 deletions Dockerfile
@@ -0,0 +1,11 @@
FROM mcr.microsoft.com/dotnet/sdk:7.0
WORKDIR /app
COPY src .
RUN dotnet build FastCache.Benchmarks/FastCache.Benchmarks.csproj -c release -f net7.0

ENV DOTNET_ReadyToRun=0
ENV DOTNET_TieredPGO=1
ENV DOTNET_JitVTableProfiling=1
ENV DOTNET_JitProfileCasts=1

CMD dotnet run --project FastCache.Benchmarks/FastCache.Benchmarks.csproj -c release -f net7.0
3 changes: 2 additions & 1 deletion src/FastCache.Cached/FastCache.Cached.csproj
Expand Up @@ -2,8 +2,9 @@

<PropertyGroup>
<Authors>neon-sunset</Authors>
<RepositoryUrl>https://github.com/neon-sunset/fast-cache</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/neon-sunset/fast-cache</RepositoryUrl>
<PackageProjectUrl>https://github.com/neon-sunset/fast-cache</PackageProjectUrl>
<PackageTags>Cache;Caching;Lock-Free;Performance;MemoryCache;In-Memory;High-Load</PackageTags>
<PackageIcon>cached-small-transparent.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down

0 comments on commit 4e54d1c

Please sign in to comment.