29 lines
866 B
XML
29 lines
866 B
XML
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net7.0</TargetFramework>
|
||
|
<Nullable>enable</Nullable>
|
||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Masa.Blazor" Version="1.0.2" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Content Update="wwwroot\i18n\config\languageConfig.json">
|
||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||
|
</Content>
|
||
|
<Content Update="wwwroot\i18n\en-US.json">
|
||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||
|
</Content>
|
||
|
<Content Update="wwwroot\i18n\zh-CN.json">
|
||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||
|
</Content>
|
||
|
<Content Update="wwwroot\nav\nav.json">
|
||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||
|
</Content>
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|