39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<!-- Runtime Definition -->
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<PackageId>xDashboard.xIdentityService</PackageId>
|
|
<Version>1.0.0</Version>
|
|
<Authors>Hadi Khazaee Asl</Authors>
|
|
<Company>SaherElm IT Center</Company>
|
|
<Description>
|
|
provide an interface to connect xDashboard IdentityServer and do OAuth Actions 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.xHttpService" Version="1.0.0" />
|
|
<PackageReference Include="xDashboard.xDataService" Version="1.0.0" /> -->
|
|
|
|
<ProjectReference Include="../xHttpService/xHttpService.csproj" />
|
|
<ProjectReference Include="../xDataService/xDataService.csproj" />
|
|
</ItemGroup>
|
|
|
|
<!-- Dependencies -->
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Abstractions" Version="2.2.0" />
|
|
<PackageReference Include="IdentityModel.AspNetCore.OAuth2Introspection" Version="4.0.0-preview.6" />
|
|
</ItemGroup>
|
|
|
|
</Project> |