Blog/Blog.csproj 1.3 K · 37 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 <!--
24 The Web SDK's default content glob only covers wwwroot, *.json and *.config, so
25 Resources/test-data.json is published on its own but the drop tables are not. /Warframe
26 reads this at runtime, so name it explicitly or the deployed site has nothing to search.
27 -->
28 <Content Include="Resources/droptables.html"
29 CopyToOutputDirectory="PreserveNewest"
30 CopyToPublishDirectory="PreserveNewest" />
31 </ItemGroup>
32
33 <ItemGroup>
34 <Folder Include="wwwroot\Icons\" />
35 </ItemGroup>
36
37 </Project>