-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
889 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,71 +1,71 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Library</OutputType> | ||
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks> | ||
<AssemblyTitle>魔方快速开发平台Blazor版</AssemblyTitle> | ||
<Description>魔方是一个快速Web开发平台,能够快速搭建系统原型,而又具有足够灵活的可扩展性!内部集成了用户权限管理、模板继承、SSO登录、OAuth服务端、数据导出与分享等多个功能模块,默认模板在真实项目中经历过单表100亿数据添删改查的考验。</Description> | ||
<Company>新生命开发团队</Company> | ||
<Copyright>©2002-2023 NewLife</Copyright> | ||
<VersionPrefix>5.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> | ||
<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.Blazor</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> | ||
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> | ||
<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> | ||
<PackageReference Include="BootstrapBlazor" Version="9.0.0" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="wwwroot\**\*" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Remove="Areas\**" /> | ||
<Content Remove="Areas\**" /> | ||
<EmbeddedResource Remove="Areas\**" /> | ||
<None Remove="Areas\**" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Content Include="..\Doc\leaf.png" Link="leaf.png" PackagePath="\" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Library</OutputType> | ||
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks> | ||
<AssemblyTitle>魔方快速开发平台Blazor版</AssemblyTitle> | ||
<Description>魔方是一个快速Web开发平台,能够快速搭建系统原型,而又具有足够灵活的可扩展性!内部集成了用户权限管理、模板继承、SSO登录、OAuth服务端、数据导出与分享等多个功能模块,默认模板在真实项目中经历过单表100亿数据添删改查的考验。</Description> | ||
<Company>新生命开发团队</Company> | ||
<Copyright>©2002-2024 NewLife</Copyright> | ||
<VersionPrefix>6.2</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> | ||
<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.Blazor</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> | ||
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> | ||
<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> | ||
<PackageReference Include="BootstrapBlazor" Version="9.0.0" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="wwwroot\**\*" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Remove="Areas\**" /> | ||
<Content Remove="Areas\**" /> | ||
<EmbeddedResource Remove="Areas\**" /> | ||
<None Remove="Areas\**" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Content Include="..\Doc\leaf.png" Link="leaf.png" PackagePath="\" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Library</OutputType> | ||
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks> | ||
<AssemblyTitle>魔方快速开发平台Blazor版</AssemblyTitle> | ||
<Description>魔方是一个快速Web开发平台,能够快速搭建系统原型,而又具有足够灵活的可扩展性!内部集成了用户权限管理、模板继承、SSO登录、OAuth服务端、数据导出与分享等多个功能模块,默认模板在真实项目中经历过单表100亿数据添删改查的考验。</Description> | ||
<Company>新生命开发团队</Company> | ||
<Copyright>©2002-2024 NewLife</Copyright> | ||
<VersionPrefix>6.2</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> | ||
<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.Blazor</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> | ||
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> | ||
<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> | ||
<PackageReference Include="BootstrapBlazor" Version="9.0.0" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="wwwroot\**\*" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Remove="Areas\**" /> | ||
<Content Remove="Areas\**" /> | ||
<EmbeddedResource Remove="Areas\**" /> | ||
<None Remove="Areas\**" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Content Include="..\Doc\leaf.png" Link="leaf.png" PackagePath="\" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.