Blog/Blog.csproj 1.4 K · 38 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="LibGit2Sharp" Version="0.32.0" />
12 <PackageReference Include="Microsoft.Extensions.Caching.Hybrid" Version="9.9.0" />
13 </ItemGroup>
14
15 <ItemGroup>
16 <!--
17 The /rvrb page reads the rvrb bot's stats over Erlang distribution. BeamSharp is not on
18 NuGet yet, so this points at the checkout next door rather than at a package version.
19 -->
20 <ProjectReference Include="..\..\BeamSharp\src\BeamSharp\BeamSharp.csproj" />
21 </ItemGroup>
22
23 <ItemGroup>
24 <!--
25 The Web SDK's default content glob only covers wwwroot, *.json and *.config, so
26 Resources/test-data.json is published on its own but the drop tables are not. /Warframe
27 reads this at runtime, so name it explicitly or the deployed site has nothing to search.
28 -->
29 <Content Include="Resources/droptables.html"
30 CopyToOutputDirectory="PreserveNewest"
31 CopyToPublishDirectory="PreserveNewest" />
32 </ItemGroup>
33
34 <ItemGroup>
35 <Folder Include="wwwroot\Icons\" />
36 </ItemGroup>
37
38 </Project>