47 lines
1.5 KiB
XML
47 lines
1.5 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.xTagService</PackageId>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
|
|
<Description>
|
|
it is a Part of xDashboard on SaherElm IT Center which provides all Tag Related Futures ...
|
|
</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.xDataService" Version="1.0.0" /> -->
|
|
<!-- <PackageReference Include="xDashboard.xPushService" Version="1.0.0" /> -->
|
|
<!-- <PackageReference Include="xDashboard.xIdentityService" Version="1.0.0" /> -->
|
|
</ItemGroup>
|
|
|
|
<!-- Local Dependencies -->
|
|
<ItemGroup>
|
|
<ProjectReference Include="../xDataService/xDataService.csproj" />
|
|
<ProjectReference Include="../xPushService/xPushService.csproj" />
|
|
<ProjectReference Include="../xIdentityService/xIdentityService.csproj" />
|
|
</ItemGroup>
|
|
|
|
<!-- For XML Documentation Support -->
|
|
<PropertyGroup>
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|