Increase size limit

This commit is contained in:
Nick Blakely 2020-09-20 23:19:10 -07:00
parent 9a751ddc64
commit 6dbcc6452e
2 changed files with 2 additions and 1 deletions

View File

@ -19,7 +19,7 @@
private readonly IHttpContextAccessor httpContextAccessor;
private readonly ILogger<CrashReportsController> logger;
private readonly IConfiguration configuration;
private const long MaximumSizeInBytes = 5242880; // 5MB
private const long MaximumSizeInBytes = 10485760; // 10MB
public CrashReportsController(
ICrashReportService crashReportService,

View File

@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UserSecretsId>155c5645-8bf7-4515-88d4-9ef801fdc47e</UserSecretsId>
</PropertyGroup>
<ItemGroup>