86 lines
4.0 KiB
XML
86 lines
4.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||
|
||
<PropertyGroup>
|
||
<OutputType>Library</OutputType>
|
||
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
|
||
<AssemblyTitle>魔方快速开发平台Tabler版</AssemblyTitle>
|
||
<Description>魔方是一个快速Web开发平台,能够快速搭建系统原型,而又具有足够灵活的可扩展性!内部集成了用户权限管理、模板继承、SSO登录、OAuth服务端、数据导出与分享等多个功能模块,默认模板在真实项目中经历过单表100亿数据添删改查的考验。</Description>
|
||
<Company>新生命开发团队</Company>
|
||
<Copyright>©2002-2025 NewLife</Copyright>
|
||
<VersionPrefix>6.5</VersionPrefix>
|
||
<VersionSuffix>$([System.DateTime]::Now.ToString(`yyyy.MMdd`))</VersionSuffix>
|
||
<Version>$(VersionPrefix).$(VersionSuffix)</Version>
|
||
<FileVersion>$(Version)</FileVersion>
|
||
<AssemblyVersion>$(VersionPrefix).*</AssemblyVersion>
|
||
<Deterministic>false</Deterministic>
|
||
<OutputPath>..\Bin</OutputPath>
|
||
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
||
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
|
||
<ImplicitUsings>enable</ImplicitUsings>
|
||
<LangVersion>latest</LangVersion>
|
||
<SignAssembly>True</SignAssembly>
|
||
<AssemblyOriginatorKeyFile>..\Doc\newlife.snk</AssemblyOriginatorKeyFile>
|
||
<NoWarn>1701;1702;NU5104;NETSDK1138;CS7035</NoWarn>
|
||
</PropertyGroup>
|
||
<PropertyGroup>
|
||
<IsPackable>true</IsPackable>
|
||
<PackageId>NewLife.Cube.Tabler</PackageId>
|
||
<Authors>$(Company)</Authors>
|
||
<ProjectUrl>https://github.com/NewLifeX</ProjectUrl>
|
||
<PackageIcon>leaf.png</PackageIcon>
|
||
<RepositoryUrl>https://github.com/NewLifeX/NewLife.Cube</RepositoryUrl>
|
||
<RepositoryType>git</RepositoryType>
|
||
<PackageTags>新生命团队;X组件;NewLife;$(AssemblyName)</PackageTags>
|
||
<PackageReleaseNotes></PackageReleaseNotes>
|
||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
||
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
||
<IncludeSymbols>true</IncludeSymbols>
|
||
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
||
</PropertyGroup>
|
||
<ItemGroup>
|
||
<ProjectReference Include="..\NewLife.CubeNC\NewLife.CubeNC.csproj" />
|
||
</ItemGroup>
|
||
|
||
<ItemGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
|
||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
|
||
<PrivateAssets>all</PrivateAssets>
|
||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||
</PackageReference>
|
||
</ItemGroup>
|
||
|
||
<ItemGroup>
|
||
<EmbeddedResource Include="wwwroot\**\*" />
|
||
</ItemGroup>
|
||
|
||
<ItemGroup>
|
||
<Content Remove="wwwroot\Content\tabler\css\apexcharts.css" />
|
||
<Content Remove="wwwroot\Content\tabler\css\nouislider.min.css" />
|
||
<Content Remove="wwwroot\Content\tabler\css\tabler-social.min.css" />
|
||
<Content Remove="wwwroot\Content\tabler\js\bootstrap.bundle.min.js.map" />
|
||
<Content Remove="wwwroot\Content\tabler\js\countUp.min.js" />
|
||
<Content Remove="wwwroot\Content\tabler\js\litepicker.amd.js" />
|
||
<Content Remove="wwwroot\Content\tabler\js\litepicker.commonjs2.js" />
|
||
<Content Remove="wwwroot\Content\tabler\js\litepicker.umd.js" />
|
||
<Content Remove="wwwroot\Content\tabler\js\nouislider.min.js" />
|
||
<Content Remove="wwwroot\Content\tabler\js\tom-select.base.min.js" />
|
||
<Content Remove="wwwroot\Content\tabler\js\tom-select.base.min.js.map" />
|
||
</ItemGroup>
|
||
|
||
<ItemGroup>
|
||
<Content Include="..\Doc\leaf.png" Link="leaf.png" PackagePath="\" />
|
||
</ItemGroup>
|
||
|
||
<ItemGroup>
|
||
<Content Update="Views\Tabler\_Layout_Menu.cshtml">
|
||
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||
</Content>
|
||
<Content Update="Views\Tabler\_Layout_Menu_Item.cshtml">
|
||
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
||
</Content>
|
||
</ItemGroup>
|
||
|
||
</Project>
|