This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,15 @@
namespace Kreta.Eugyintezes.WebApi.Infrastructure
{
public static class Constants
{
public const string VersionName = "v1";
public const string RoutePrefix = "api/";
public static class ConfigurationSectionNames
{
public const string IdpConfig = nameof(IdpConfig);
public const string ApiKeyConfiguration = nameof(ApiKeyConfiguration);
}
}
}

View file

@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>Kreta.eUgyintezes.Infrastructure</RootNamespace>
<AssemblyName>Kreta.eUgyintezes.Infrastructure</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Meziantou.Analyzer" Version="1.0.696">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>