48 lines
1.4 KiB
XML
48 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<!-- Runtime Definition -->
|
|
<PropertyGroup>
|
|
<Version>1.0.0</Version>
|
|
<LangVersion>12.0</LangVersion>
|
|
<Authors>Hadi Khazaee Asl</Authors>
|
|
<Company>SaherElm IT Center</Company>
|
|
<PackageId>xDashboard.xHttpService</PackageId>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
|
|
<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>
|
|
</ItemGroup>
|
|
|
|
<!-- Local Dependencies -->
|
|
<ItemGroup>
|
|
<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>
|
|
|
|
<!-- For XML Documentation Support -->
|
|
<PropertyGroup>
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
</Project> |