This commit is contained in:
2026-07-26 21:19:40 +03:30
parent 429c07a02d
commit 2144e9f8a7
82 changed files with 2712 additions and 146 deletions
+23 -9
View File
@@ -1,13 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Runtime Definition -->
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>xSaherelm.xAiModels</PackageId>
<Version>1.0.0</Version>
<LangVersion>12.0</LangVersion>
<Authors>Hadi Khazaee Asl</Authors>
<Company>SaherElm IT Center</Company>
<PackageId>xSaherelm.xAiModels</PackageId>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>
it is a Part of xSaherElm project which Provides all Models which used in Ai Service ...
it is a Part of xSaherElm project which Provides all Models and Data Service
Implementations which used in Ai Service ...
</Description>
<!-- Icon Definition -->
@@ -22,14 +26,24 @@
<!-- Local Modules -->
<ItemGroup>
<!-- <PackageReference Include="xDashboard.xModels" Version="1.0.0" /> -->
<PackageReference Include="Microsoft.Extensions.AI" Version="10.4.1" />
<!-- <PackageReference Include="xDashboard.xCommons" Version="1.0.0" /> -->
<!-- <PackageReference Include="xDashboard.xStringService" Version="1.0.0" /> -->
</ItemGroup>
<!-- Project Dependencies -->
<!-- Local Dependencies -->
<ItemGroup>
<ProjectReference Include="..\xModels\xModels.csproj" />
<ProjectReference Include="..\xCommons\xCommons.csproj" />
<ProjectReference Include="../xStringService/xStringService.csproj" />
</ItemGroup>
<!-- Dependencies -->
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.AI" Version="10.4.1" />
</ItemGroup>
<!-- For XML Documentation Support -->
<PropertyGroup>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
</Project>