51 lines
1.6 KiB
XML
51 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<!-- Runtime Definition -->
|
|
<PropertyGroup>
|
|
<Version>1.0.0</Version>
|
|
<LangVersion>12.0</LangVersion>
|
|
<PackageId>xSaherelm.xAiService</PackageId>
|
|
<Authors>Hadi Khazaee Asl</Authors>
|
|
<Company>SaherElm IT Center</Company>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
|
|
<Description>
|
|
it is a Part of xSaherElm project which Provides Services to use xSaherElm AI Features ...
|
|
</Description>
|
|
|
|
<!-- Icon Definition -->
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
</PropertyGroup>
|
|
|
|
<!-- Icon Handling -->
|
|
<ItemGroup>
|
|
<None Include="../../Documents/Resources/Images/favicon.png" Link="icon.png" Pack="true" PackagePath="\icon.png" />
|
|
</ItemGroup>
|
|
|
|
<!-- Local Projects -->
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\xAiModels\xAiModels.csproj" />
|
|
<!-- <ProjectReference Include="..\xCommons\xCommons.csproj" />
|
|
<ProjectReference Include="..\xIdentityHelper\xIdentityHelper.csproj" /> -->
|
|
</ItemGroup>
|
|
|
|
<!-- Local Modules -->
|
|
<ItemGroup>
|
|
<!-- <PackageReference Include="xDashboard.xCommons" Version="1.0.0" /> -->
|
|
<!-- <PackageReference Include="xDashboard.xIdentityService" Version="1.0.0" /> -->
|
|
</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>
|