2024-12-02 13:24:34 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
|
|
|
|
<Authors>Sagar P</Authors>
|
|
|
|
|
|
<Company>Odiware Technologies</Company>
|
|
|
|
|
|
<Product>OnlineAssessment Web API</Product>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
|
<AssemblyName>API.User</AssemblyName>
|
|
|
|
|
|
<RootNamespace>API.User</RootNamespace>
|
|
|
|
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
|
|
|
|
<UserSecretsId>3a7d4b7a-ef19-496d-a1f0-5cb90748eec7</UserSecretsId>
|
|
|
|
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
|
|
|
|
<DockerfileContext>..\..</DockerfileContext>
|
|
|
|
|
|
<DockerComposeProjectPath>..\..\docker-compose.dcproj</DockerComposeProjectPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
|
<OutputPath>bin</OutputPath>
|
|
|
|
|
|
<NoWarn>1701;1702;1591</NoWarn>
|
|
|
|
|
|
<DocumentationFile>bin\net9.0\API.User.xml</DocumentationFile>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
|
|
<DebugSymbols>false</DebugSymbols>
|
|
|
|
|
|
<OutputPath>bin</OutputPath>
|
|
|
|
|
|
<DocumentationFile>bin\net9.0\API.User.xml</DocumentationFile>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Remove="AutoMapping.cs" />
|
|
|
|
|
|
<Compile Remove="V1\Controllers\ExamTypesController.cs" />
|
|
|
|
|
|
<Compile Remove="V1\Controllers\InstitutesController.cs" />
|
|
|
|
|
|
<Compile Remove="V1\Controllers\LanguagesController.cs" />
|
|
|
|
|
|
<Compile Remove="V1\Controllers\PlansController.cs" />
|
|
|
|
|
|
<Compile Remove="V1\Controllers\QuestionTypesController.cs" />
|
|
|
|
|
|
<Compile Remove="V1\Controllers\RolesController.cs" />
|
|
|
|
|
|
<Compile Remove="V1\Controllers\StudyNotesController.cs" />
|
|
|
|
|
|
<Compile Remove="V1\Controllers\SubCategoriesController.cs" />
|
|
|
|
|
|
<Compile Remove="V1\Controllers\SubscriptionsController.cs" />
|
|
|
|
|
|
<Compile Remove="V1\Controllers\UserGroupsController.cs" />
|
|
|
|
|
|
<Compile Remove="V1\Controllers\WeatherForecastController.cs" />
|
|
|
|
|
|
<Compile Remove="Validators\CategoryValidator.cs" />
|
|
|
|
|
|
<Compile Remove="Validators\ClassValidator.cs" />
|
|
|
|
|
|
<Compile Remove="Validators\InstituteValidtor.cs" />
|
|
|
|
|
|
<Compile Remove="Validators\QuestionValidator.cs" />
|
|
|
|
|
|
<Compile Remove="Validators\StudyNoteValidator.cs" />
|
|
|
|
|
|
<Compile Remove="Validators\SubCategoryValidator.cs" />
|
|
|
|
|
|
<Compile Remove="Validators\SubjectValidator.cs" />
|
|
|
|
|
|
<Compile Remove="Validators\TagValidator.cs" />
|
|
|
|
|
|
<Compile Remove="WeatherForecast.cs" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Remove="custom.js" />
|
|
|
|
|
|
<None Remove="index.html" />
|
|
|
|
|
|
<None Remove="ReadMe_31.txt" />
|
|
|
|
|
|
<None Remove="swagger_theme.css" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<EmbeddedResource Include="Content\custom.js" />
|
|
|
|
|
|
<EmbeddedResource Include="Content\custom.css">
|
|
|
|
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-10-22 13:05:31 +00:00
|
|
|
|
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" />
|
|
|
|
|
|
<PackageReference Include="FirebaseAdmin" Version="3.1.0" />
|
|
|
|
|
|
<PackageReference Include="FluentValidation.AspNetCore" Version="11.3.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.0" />
|
2024-12-02 13:24:34 +00:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Cors" Version="2.2.0" />
|
2025-10-22 13:05:31 +00:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="9.0.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning" Version="5.1.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer" Version="5.1.0" />
|
2024-12-02 13:24:34 +00:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.0">
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.0">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.PlatformAbstractions" Version="1.1.0" />
|
2025-10-22 13:05:31 +00:00
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="9.0.0" />
|
|
|
|
|
|
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0" />
|
|
|
|
|
|
<PackageReference Include="Serilog.Extensions.Hosting" Version="9.0.0" />
|
|
|
|
|
|
<PackageReference Include="Serilog.Extensions.Logging.File" Version="3.0.0" />
|
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
|
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.2.0" />
|
|
|
|
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.3.0" />
|
2024-12-02 13:24:34 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\_layers\data\Data.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\_layers\domain\Domain.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|