| 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 |
|
| 18 |
|
| 19 |
|
| 20 |
<ProjectReference Include="..\..\BeamSharp\src\BeamSharp\BeamSharp.csproj" /> |
| 21 |
</ItemGroup> |
| 22 |
|
| 23 |
<ItemGroup> |
| 24 |
|
| 25 |
|
| 26 |
|
| 27 |
|
| 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> |