2023-10-01 14:09:04 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
|
2022-09-04 19:19:42 +02:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-09-23 10:43:59 +02:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2022-09-04 19:19:42 +02:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2023-09-23 10:43:59 +02:00
|
|
|
|
<LangVersion>11</LangVersion>
|
2022-09-04 19:19:42 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-11-12 18:34:33 +01:00
|
|
|
|
<PackageReference Include="Autocomplete.Clients" Version="1.1.0"/>
|
|
|
|
|
<PackageReference Include="CodeBeam.MudBlazor.Extensions" Version="6.5.10"/>
|
|
|
|
|
<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="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0-rc.1.23419.4"/>
|
|
|
|
|
<PackageReference Include="MudBlazor" Version="6.10.0"/>
|
|
|
|
|
<PackageReference Include="SharpZipLib" Version="1.4.2"/>
|
|
|
|
|
<PackageReference Include="Swan.Core" Version="7.0.0-beta.2"/>
|
2022-09-04 19:19:42 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-11-12 18:34:33 +01:00
|
|
|
|
<ProjectReference Include="..\SharedProject\SharedProject.csproj"/>
|
2022-09-04 19:19:42 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-09-09 14:31:45 +02:00
|
|
|
|
<ItemGroup>
|
2023-11-12 18:34:33 +01:00
|
|
|
|
<Content Update="wwwroot\appsettings.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Update="wwwroot\data\datatable\musicinfo.bin">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Update="wwwroot\data\datatable\music_order.bin">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Update="wwwroot\data\datatable\wordlist.bin">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Update="wwwroot\data\datatable\music_order.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Update="wwwroot\data\datatable\musicinfo.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Update="wwwroot\data\datatable\wordlist.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2022-09-09 14:31:45 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-09-04 19:19:42 +02:00
|
|
|
|
|
|
|
|
|
</Project>
|