Blog/Blog.csproj 831 B · 26 lines · raw · history

1 <Project Sdk="Microsoft.NET.Sdk.Web">
2
3 <PropertyGroup>
4 <TargetFramework>net10.0</TargetFramework>
5 <Nullable>enable</Nullable>
6 <ImplicitUsings>enable</ImplicitUsings>
7 <UserSecretsId>8ac9638f-b282-427d-a072-4b90a95d5fa4</UserSecretsId>
8 </PropertyGroup>
9
10 <ItemGroup>
11 <PackageReference Include="Microsoft.Extensions.Caching.Hybrid" Version="9.9.0" />
12 </ItemGroup>
13
14 <ItemGroup>
15 <!--
16 The /rvrb page reads the rvrb bot's stats over Erlang distribution. BeamSharp is not on
17 NuGet yet, so this points at the checkout next door rather than at a package version.
18 -->
19 <ProjectReference Include="..\..\BeamSharp\src\BeamSharp\BeamSharp.csproj" />
20 </ItemGroup>
21
22 <ItemGroup>
23 <Folder Include="wwwroot\Icons\" />
24 </ItemGroup>
25
26 </Project>