41 lines
1.6 KiB
XML
41 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<!-- Runtime Definition -->
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<PackageId>xDashboard.xPushService</PackageId>
|
|
<Version>1.0.0</Version>
|
|
<Authors>Hadi Khazaee Asl</Authors>
|
|
<Company>SaherElm IT Center</Company>
|
|
<Description>
|
|
it is a Part of xDashboard Projects on SaherElm IT Center which provides all required models
|
|
and actions in related to
|
|
handling SignalR Push Platforms.
|
|
</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 Dependencies -->
|
|
<ItemGroup>
|
|
<PackageReference Include="xDashboard.xModels" Version="1.0.0" />
|
|
<PackageReference Include="xDashboard.xCommons" Version="1.0.0" />
|
|
|
|
<!-- <ProjectReference Include="..\xModels\xModels.csproj" /> -->
|
|
<!-- <ProjectReference Include="..\xCommons\xCommons.csproj" /> -->
|
|
</ItemGroup>
|
|
|
|
<!-- Package Dependencies -->
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR" Version="1.1.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="3.1.31" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="3.1.31" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" Version="5.0.17" />
|
|
</ItemGroup>
|
|
</Project> |