2022-06-21 03:40:42 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
|
2022-04-24 02:29:55 +08:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2022-06-21 03:40:42 +08:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<RunAOTCompilation>False</RunAOTCompilation>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<RunAOTCompilation>False</RunAOTCompilation>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2022-04-24 02:29:55 +08:00
|
|
|
|
<ItemGroup>
|
2022-04-25 02:07:11 +08:00
|
|
|
|
<PackageReference Include="GenFu" Version="1.6.0" />
|
2022-04-24 02:29:55 +08:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.4" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.4" PrivateAssets="all" />
|
2022-06-18 22:11:14 +08:00
|
|
|
|
<PackageReference Include="MudBlazor" Version="6.0.11-dev.4" />
|
2022-07-07 21:46:17 +08:00
|
|
|
|
<PackageReference Include="protobuf-net" Version="3.1.17" />
|
2022-04-24 02:29:55 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\SharedProject\SharedProject.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-06-21 03:40:42 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Update="wwwroot\appsettings.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
|
|
|
</Content>
|
2022-07-07 21:46:17 +08:00
|
|
|
|
<Content Update="wwwroot\data\avatar.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Update="wwwroot\data\navigator.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Update="wwwroot\data\title.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
|
|
|
</Content>
|
2022-06-21 15:45:18 +08:00
|
|
|
|
<Content Update="wwwroot\news.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
|
|
|
</Content>
|
2022-06-21 03:40:42 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-07-06 00:52:38 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Utils" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-04-24 02:29:55 +08:00
|
|
|
|
|
|
|
|
|
</Project>
|