36 lines
1.2 KiB
XML
36 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<!-- Runtime Definition -->
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<PackageId>xDashboard.xHttpService</PackageId>
|
|
<Version>1.0.0</Version>
|
|
<Authors>Hadi Khazaee Asl</Authors>
|
|
<Company>SaherElm IT Center</Company>
|
|
<Description>
|
|
provide all required tools for calling Http Apis and OAuth handling to xDashboard project.
|
|
</Description>
|
|
|
|
<!-- Icon Definition -->
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
</PropertyGroup>
|
|
|
|
<!-- Icon Handling -->
|
|
<ItemGroup>
|
|
<None Include="../../Resources/Images/favicon.png" Link="icon.png" Pack="true" PackagePath="\icon.png" />
|
|
</ItemGroup>
|
|
|
|
<!-- Local Modules -->
|
|
<ItemGroup>
|
|
<PackageReference Include="xDashboard.xIdentityModels" Version="1.0.0" />
|
|
<!-- <ProjectReference Include="../xIdentityModels/xIdentityModels.csproj" /> -->
|
|
</ItemGroup>
|
|
|
|
<!-- Dependencies -->
|
|
<ItemGroup>
|
|
<PackageReference Include="RestSharp" Version="106.11.7" />
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
|
|
</ItemGroup>
|
|
|
|
</Project> |