2022-09-04 19:19:42 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-09-15 09:27:27 +02:00
|
|
|
<PackageReference Include="Autocomplete.Clients" Version="1.1.0" />
|
2022-09-19 17:02:01 +02:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.9" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.9" PrivateAssets="all" />
|
2022-09-06 16:32:36 +02:00
|
|
|
<PackageReference Include="MudBlazor" Version="6.0.15" />
|
2022-09-19 17:02:01 +02:00
|
|
|
<PackageReference Include="SharpZipLib" Version="1.4.0" />
|
2022-09-12 16:17:15 +02:00
|
|
|
<PackageReference Include="Swan.Core" Version="6.0.2-beta.90" />
|
2022-09-04 19:19:42 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\SharedProject\SharedProject.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2022-09-09 14:31:45 +02:00
|
|
|
<ItemGroup>
|
2022-09-19 17:07:05 +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>
|
2022-09-22 16:14:55 +02:00
|
|
|
<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>
|
2022-09-09 14:31:45 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
2022-09-10 17:45:18 +02:00
|
|
|
<ItemGroup>
|
|
|
|
<Folder Include="wwwroot\data" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2022-09-04 19:19:42 +02:00
|
|
|
|
|
|
|
</Project>
|