mirror of
https://gitee.com/blazorcomponent/MASA.Blazor.git
synced 2025-12-06 10:19:23 +08:00
* ♻ refactor: migrate all mobile components to a separate project
* remove unused files
* update
* update locale
* 🐛 fix: updating the logic of fetching latest release version
* update cicd
* update
43 lines
1.6 KiB
XML
43 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<SupportedPlatform Include="browser" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Masa.Blazor.Extensions.Languages.Razor" Version="0.0.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components" Version="9.0.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.CustomElements" Version="9.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Masa.Blazor.JSComponents.DriverJS\Masa.Blazor.JSComponents.DriverJS.csproj" />
|
|
<ProjectReference Include="..\..\src\Masa.Blazor.JSComponents.PdfJS\Masa.Blazor.JSComponents.PdfJS.csproj" />
|
|
<ProjectReference Include="..\..\src\Masa.Blazor.MobileComponents\Masa.Blazor.MobileComponents.csproj" />
|
|
<ProjectReference Include="..\Masa.Docs.Core\Masa.Docs.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ExamplesSourceFile Include="Examples\**\*.razor" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Update="wwwroot\fonts\SourceHanSansCN-Normal.otf">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<Target Name="CopyExmaplesToTxt" AfterTargets="Build">
|
|
<Copy SourceFiles="@(ExamplesSourceFile)" DestinationFiles="wwwroot\pages\%(RecursiveDir)\examples\%(Filename).txt" />
|
|
</Target>
|
|
|
|
</Project>
|