Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
"debugging.hotReload.applyOnFileSave": true,
"debugging.general.disableJITOptimization": true,
"debugging.hotReload.enableForNoDebugLaunch": true,
"debugging.general.closeConsoleWhenDebuggingEnds": true,
"projectsAndSolutions.aspNetCore.general.hotReloadCssChanges": true,
"projectsAndSolutions.webProjects.enableDebugTargetsObserver": false,
"copilot.general.completions.enableNextEditSuggestions": true,
"copilot.general.editor.enableAdaptivePaste": true,
"copilot.general.chat.enablePlanning": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ void AddDbContext(DbContextOptionsBuilder options)

services.AddHttpClient<NugetStatisticsService>(c =>
{
c.Timeout = TimeSpan.FromSeconds(3);
c.Timeout = TimeSpan.FromSeconds(20);
c.BaseAddress = new Uri("https://azuresearch-usnc.nuget.org");
c.DefaultRequestVersion = HttpVersion.Version11;
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
<ProjectReference Include="..\Boilerplate.Server.Shared\Boilerplate.Server.Shared.csproj" />
<ProjectReference Condition=" '$(api)' == 'Integrated' OR '$(api)' == ''" Include="..\Boilerplate.Server.Api\Boilerplate.Server.Api.csproj" />
<ProjectReference Include="..\..\Client\Boilerplate.Client.Web\Boilerplate.Client.Web.csproj" />
<ProjectReference Include="..\..\Client\Boilerplate.Client.Core\Boilerplate.Client.Core.csproj" />
<!-- By referencing Client.Core in Server.Web project, you can build the Client.Web project just once and then unload it during development with Blazor Server, which significantly speeds up build times. -->
</ItemGroup>

<ItemGroup>
Expand Down
Loading