This commit is contained in:
2026-07-29 00:15:56 +03:30
parent f115b2bc85
commit 7dd333f013
8 changed files with 630 additions and 123 deletions
+23 -2
View File
@@ -4,12 +4,13 @@
<PropertyGroup>
<Version>1.0.0</Version>
<Nullable>enable</Nullable>
<LangVersion>13.0</LangVersion>
<LangVersion>12.0</LangVersion>
<Authors>Hadi Khazaee Asl</Authors>
<Company>SaherElm IT Center</Company>
<PackageId>xSaherElm.xAiApi</PackageId>
<ImplicitUsings>enable</ImplicitUsings>
<TargetFramework>net10.0</TargetFramework>
<!-- <TargetFramework>netcoreapp3.1</TargetFramework> -->
<TargetFramework>net8.0</TargetFramework>
<Description>
a WebAPI Project which contains all Business Logic of xSaherElm Project's AI.
@@ -36,12 +37,19 @@
<!-- Local Dependencies -->
<ItemGroup>
<ProjectReference Include="../Modules/xCommons/xCommons.csproj" />
<ProjectReference Include="../Modules/xAiModels/xAiModels.csproj" />
<ProjectReference Include="../Modules/xTagService/xTagService.csproj" />
<ProjectReference Include="../Modules/xDataService/xDataService.csproj" />
<ProjectReference Include="../Modules/xPushService/xPushService.csproj" />
<ProjectReference Include="../Modules/xHttpService/xHttpService.csproj" />
<ProjectReference Include="../Modules/xFileService/xFileService.csproj" />
<ProjectReference Include="../Modules/xStorageService/xStorageService.csproj" />
<ProjectReference Include="../Modules/xIdentityHelper/xIdentityHelper.csproj" />
</ItemGroup>
<!-- Dependencies -->
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.11" />
<PackageReference Include="IdentityModel.AspNetCore.OAuth2Introspection" Version="5.0.0" />
</ItemGroup>
@@ -52,4 +60,17 @@
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
<!-- Ef Core -->
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<!-- Create Required Folders -->
<Target Name="CreateRequiredFolder" AfterTargets="AfterPublish">
<MakeDir Directories="$(PublishDir)wwwroot" Condition="!Exists('$(PublishDir)wwwroot')" />
</Target>
</Project>