mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-03 12:37:40 +08:00
chore: add localized intellisense for zh-CN,ja-JP,ko-KR (#4107)
This commit is contained in:
parent
a2f1ea3587
commit
048b9aecd3
1
.gitignore
vendored
1
.gitignore
vendored
@ -358,3 +358,4 @@ scripts/previewEditor/index.html
|
||||
/lib
|
||||
site/AntDesign.Docs/wwwroot/color.less
|
||||
.history
|
||||
/components/LocalizedIntellisenseFiles/AntDesign.xml
|
||||
|
@ -1,7 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>netstandard2.1;net5;net6;net7;net8</TargetFrameworks>
|
||||
<TargetFrameworks>netstandard2.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<OutputType>Library</OutputType>
|
||||
<IsPackable>true</IsPackable>
|
||||
@ -23,12 +23,17 @@
|
||||
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||
<DocumentationFile>AntDesign.xml</DocumentationFile>
|
||||
<DocumentationFile>./LocalizedIntellisenseFiles/$(AssemblyName).xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
|
||||
|
||||
<ItemGroup>
|
||||
<TfmSpecificPackageFile Include="LocalizedIntellisenseFiles\**\*.xml" PackagePath="/lib/$(TargetFramework)" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<!-- The nuget package icon -->
|
||||
<None Include="..\README.md" Pack="true" PackagePath="" />
|
||||
@ -51,7 +56,7 @@
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="3.1.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="$(TargetFramework) == 'net5'">
|
||||
<ItemGroup Condition="$(TargetFramework) == 'net5.0'">
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.0" />
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="5.0.3">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
@ -59,7 +64,7 @@
|
||||
</PackageReference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="$(TargetFramework) == 'net6'">
|
||||
<ItemGroup Condition="$(TargetFramework) == 'net6.0'">
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.0" />
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="6.0.0">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
@ -67,7 +72,7 @@
|
||||
</PackageReference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="$(TargetFramework) == 'net7'">
|
||||
<ItemGroup Condition="$(TargetFramework) == 'net7.0'">
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.0" />
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="7.0.0">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
@ -75,7 +80,7 @@
|
||||
</PackageReference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="$(TargetFramework) == 'net8'">
|
||||
<ItemGroup Condition="$(TargetFramework) == 'net8.0'">
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.0" />
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
|
7037
components/LocalizedIntellisenseFiles/ja-JP/AntDesign.xml
Normal file
7037
components/LocalizedIntellisenseFiles/ja-JP/AntDesign.xml
Normal file
File diff suppressed because it is too large
Load Diff
7032
components/LocalizedIntellisenseFiles/ko-KR/AntDesign.xml
Normal file
7032
components/LocalizedIntellisenseFiles/ko-KR/AntDesign.xml
Normal file
File diff suppressed because it is too large
Load Diff
7030
components/LocalizedIntellisenseFiles/zh-CN/AntDesign.xml
Normal file
7030
components/LocalizedIntellisenseFiles/zh-CN/AntDesign.xml
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user