42 lines
1.8 KiB
XML
42 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Company>Winsomnia</Company>
|
|
<Version>1.0.0-a0</Version>
|
|
<AssemblyVersion>1.0.0.0</AssemblyVersion>
|
|
<FileVersion>1.0.0.0</FileVersion>
|
|
<AssemblyName>Mirea.Api.Endpoint</AssemblyName>
|
|
<RootNamespace>$(AssemblyName)</RootNamespace>
|
|
<OutputType>Exe</OutputType>
|
|
<InvariantGlobalization>false</InvariantGlobalization>
|
|
<UserSecretsId>65cea060-88bf-4e35-9cfb-18fc996a8f05</UserSecretsId>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
<DockerfileContext>.</DockerfileContext>
|
|
<SignAssembly>False</SignAssembly>
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
<DocumentationFile>docs.xml</DocumentationFile>
|
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Cronos" Version="0.8.4" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.6" />
|
|
<PackageReference Include="StackExchange.Redis" Version="2.7.33" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore.Versioning" Version="2.0.0" />
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.6.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ApiDto\ApiDto.csproj" />
|
|
<ProjectReference Include="..\SqlData\Domain\Domain.csproj" />
|
|
<ProjectReference Include="..\SqlData\Persistence\Persistence.csproj" />
|
|
<ProjectReference Include="..\Security\Security.csproj" />
|
|
<ProjectReference Include="..\SqlData\Migrations\PsqlMigrations\PsqlMigrations.csproj" />
|
|
<ProjectReference Include="..\SqlData\Migrations\SqliteMigrations\SqliteMigrations.csproj" />
|
|
<ProjectReference Include="..\SqlData\Migrations\MysqlMigrations\MysqlMigrations.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |