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>
|
2022-07-09 21:26:39 +08:00
|
|
|
|
<PublishTrimmed>true</PublishTrimmed>
|
2022-04-24 02:29:55 +08:00
|
|
|
|
</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'">
|
2022-07-12 00:48:43 +08:00
|
|
|
|
<RunAOTCompilation>True</RunAOTCompilation>
|
2022-06-21 03:40:42 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2022-07-08 21:22:29 +08:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<SuppressTrimAnalysisWarnings>false</SuppressTrimAnalysisWarnings>
|
|
|
|
|
<TrimmerSingleWarn>false</TrimmerSingleWarn>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2022-07-09 21:26:39 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="ILLink.Descriptors.xml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="ILLink.Descriptors.xml">
|
|
|
|
|
<LogicalName>ILLink.Descriptors.xml</LogicalName>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-04-24 02:29:55 +08:00
|
|
|
|
<ItemGroup>
|
2022-04-25 02:07:11 +08:00
|
|
|
|
<PackageReference Include="GenFu" Version="1.6.0" />
|
2023-02-13 01:46:08 +08:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.10" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.10" PrivateAssets="all" />
|
|
|
|
|
<PackageReference Include="MudBlazor" Version="6.0.17" />
|
|
|
|
|
<PackageReference Include="protobuf-net" Version="3.1.22" />
|
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-08 21:22:29 +08:00
|
|
|
|
<Content Update="wwwroot\data\avatar.dat">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2022-07-07 21:46:17 +08:00
|
|
|
|
<Content Update="wwwroot\data\avatar.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
|
|
|
</Content>
|
2022-07-08 21:22:29 +08:00
|
|
|
|
<Content Update="wwwroot\data\navigator.dat">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2022-07-07 21:46:17 +08:00
|
|
|
|
<Content Update="wwwroot\data\navigator.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
|
|
|
</Content>
|
2022-07-08 21:22:29 +08:00
|
|
|
|
<Content Update="wwwroot\data\title.dat">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2022-07-07 21:46:17 +08:00
|
|
|
|
<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>
|