31 lines
888 B
XML
31 lines
888 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<!-- Runtime Definition -->
|
|
<PropertyGroup>
|
|
<Version>1.0.0</Version>
|
|
<LangVersion>8.0</LangVersion>
|
|
<Authors>Hadi Khazaee Asl</Authors>
|
|
<Company>SaherElm IT Center</Company>
|
|
<PackageId>xDashboard.xModels</PackageId>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<Description>
|
|
provide required models and related tools for using in 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="../xCommons/xCommons.csproj" />
|
|
</ItemGroup>
|
|
</Project> |