28 lines
937 B
XML
28 lines
937 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<!-- Runtime Definitions -->
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<PackageId>xSaherelmAI.xIdentityHelper</PackageId>
|
|
<Version>1.0.0</Version>
|
|
<Authors>Hadi Khazaee Asl</Authors>
|
|
<Company>SaherElm IT Center</Company>
|
|
<Description>
|
|
this module provide all Authorization Constants which used in xSaherElm AI project.
|
|
</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 Dependencies -->
|
|
<ItemGroup>
|
|
<PackageReference Include="xDashboard.xIdentityService" Version="1.0.0" />
|
|
<!-- <ProjectReference Include="../xIdentityService/xIdentityService.csproj" /> -->
|
|
</ItemGroup>
|
|
</Project> |