Release v1.0.0 #16

Merged
Wesser merged 492 commits from release/v1.0.0 into master 2025-02-12 09:19:32 +03:00
79 changed files with 1575 additions and 57 deletions
Showing only changes of commit 810c8ec5cf - Show all commits

View File

@ -1,6 +1,7 @@
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http;
using System;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Mirea.Api.Endpoint.Models;
using System;
namespace Mirea.Api.Endpoint.Common.Extensions; namespace Mirea.Api.Endpoint.Common.Extensions;

View File

@ -1,6 +1,7 @@
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http;
using System;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Mirea.Api.Endpoint.Models;
using System;
namespace Mirea.Api.Endpoint.Common.Extensions; namespace Mirea.Api.Endpoint.Common.Extensions;

View File

@ -5,7 +5,7 @@ using Microsoft.OpenApi.Models;
using Swashbuckle.AspNetCore.SwaggerGen; using Swashbuckle.AspNetCore.SwaggerGen;
using System; using System;
namespace Mirea.Api.Endpoint; namespace Mirea.Api.Endpoint.Configuration;
public class ConfigureSwaggerOptions(IApiVersionDescriptionProvider provider) : IConfigureOptions<SwaggerGenOptions> public class ConfigureSwaggerOptions(IApiVersionDescriptionProvider provider) : IConfigureOptions<SwaggerGenOptions>
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using System.IO; using System.IO;
namespace Mirea.Api.Endpoint; namespace Mirea.Api.Endpoint.Configuration;
internal static class EnvironmentManager internal static class EnvironmentManager
{ {

View File

@ -1,4 +1,4 @@
namespace Mirea.Api.Endpoint.Common.Extensions; namespace Mirea.Api.Endpoint.Models;
/// <summary> /// <summary>
/// A class for providing information about an error /// A class for providing information about an error