-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub-star-search.csproj
More file actions
23 lines (21 loc) · 988 Bytes
/
github-star-search.csproj
File metadata and controls
23 lines (21 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<WarningsAsErrors>Nullable</WarningsAsErrors>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>GithubStarSearch</RootNamespace>
<AssemblyName>GithubStarSearch</AssemblyName>
<UserSecretsId>b0c8effa-6d4b-4e57-8476-3989524d30a4</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Blazored.LocalStorage" Version="4.5.0" />
<PackageReference Include="Markdig" Version="0.40.0" />
<PackageReference Include="MinimalHttpLogger" Version="2.0.0"/>
<PackageReference Include="MudBlazor" Version="7.*" />
<PackageReference Include="Octokit" Version="14.0.0"/>
<PackageReference Include="MeiliSearch" Version="0.15.5"/>
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0"/>
<PackageReference Include="System.Linq.Async" Version="6.0.1"/>
</ItemGroup>
</Project>