2020-09-17 15:03:25 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
|
2019-12-04 16:46:08 +08:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2020-11-14 23:44:48 +08:00
|
|
|
|
<TargetFramework>net5</TargetFramework>
|
2020-03-11 18:45:37 +08:00
|
|
|
|
<ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest>
|
2020-10-18 17:48:24 +08:00
|
|
|
|
<BlazorWebAssemblyLoadAllGlobalizationData>true</BlazorWebAssemblyLoadAllGlobalizationData>
|
2019-12-04 16:46:08 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-11-14 23:44:48 +08:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="5.0.0" PrivateAssets="all" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.Web.Extensions" Version="5.0.0-preview9.20513.1" />
|
2020-03-11 18:45:37 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-06-13 23:21:44 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ServiceWorker Include="wwwroot\service-worker.js" PublishedContent="wwwroot\service-worker.published.js" />
|
2019-12-04 16:46:08 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-02-06 20:15:46 +08:00
|
|
|
|
<ProjectReference Include="..\AntDesign.Docs\AntDesign.Docs.csproj" />
|
2019-12-04 16:46:08 +08:00
|
|
|
|
</ItemGroup>
|
2020-03-17 13:42:54 +08:00
|
|
|
|
|
2020-05-10 15:42:02 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="$(SolutionDir)scripts\gh-pages\**" LinkBase="gh-pages" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-04-15 12:26:00 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<DocFiles Include="$(SolutionDir)docs\**\*.*"></DocFiles>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<Target Name="CopyDocs" BeforeTargets="Build">
|
|
|
|
|
<Copy SourceFiles="@(DocFiles)" DestinationFolder="$(ProjectDir)\wwwroot\docs\%(RecursiveDir)" ContinueOnError="true" />
|
|
|
|
|
</Target>
|
2019-12-04 16:46:08 +08:00
|
|
|
|
</Project>
|