2023-09-09 14:58:20 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-09-23 10:43:59 +02:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2023-09-09 14:58:20 +02:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2023-09-23 10:43:59 +02:00
|
|
|
<LangVersion>11</LangVersion>
|
2023-09-09 14:58:20 +02:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-09-17 16:07:41 +02:00
|
|
|
<PackageReference Include="Autocomplete.Clients" Version="1.1.0" />
|
2023-09-23 10:43:59 +02:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.0-rc.1.23421.29" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.0-rc.1.23421.29" PrivateAssets="all" />
|
|
|
|
<PackageReference Include="MudBlazor" Version="6.10.0" />
|
|
|
|
<PackageReference Include="SharpZipLib" Version="1.4.2" />
|
|
|
|
<PackageReference Include="Swan.Core" Version="7.0.0-beta.2" />
|
2023-09-09 14:58:20 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-09-17 16:07:41 +02:00
|
|
|
<ProjectReference Include="..\SharedProject\SharedProject.csproj" />
|
2023-09-09 14:58:20 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-09-17 16:07:41 +02:00
|
|
|
<Content Update="wwwroot\data\musicinfo.bin">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
<Content Update="wwwroot\data\music_order.bin">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
<Content Update="wwwroot\data\wordlist.bin">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
<Content Update="wwwroot\data\music_attribute.bin">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
<Content Update="wwwroot\data\music_order.json">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
<Content Update="wwwroot\data\musicinfo.json">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
<Content Update="wwwroot\data\wordlist.json">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
2023-09-09 14:58:20 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-09-17 16:07:41 +02:00
|
|
|
<Folder Include="wwwroot\data" />
|
2023-09-09 14:58:20 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|