1
0
mirror of synced 2024-12-11 06:16:01 +01:00
TaikoLocalServer/TaikoWebUI/TaikoWebUI.csproj

47 lines
2.1 KiB
XML
Raw Normal View History

2023-10-01 14:09:04 +02:00
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
2022-09-04 19:19:42 +02:00
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
2022-09-04 19:19:42 +02:00
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>11</LangVersion>
2022-09-04 19:19:42 +02:00
</PropertyGroup>
<ItemGroup>
2022-09-15 09:27:27 +02:00
<PackageReference Include="Autocomplete.Clients" Version="1.1.0" />
2023-10-01 14:09:04 +02:00
<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" />
2023-10-16 11:38:27 +02:00
<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>
<ProjectReference Include="..\SharedProject\SharedProject.csproj" />
</ItemGroup>
<ItemGroup>
2023-10-16 12:59:55 +02:00
<Content Update="wwwroot\data\datatable\musicinfo.bin">
2022-09-19 17:07:05 +02:00
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2023-10-16 12:59:55 +02:00
<Content Update="wwwroot\data\datatable\music_order.bin">
2022-09-19 17:07:05 +02:00
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2023-10-16 12:59:55 +02:00
<Content Update="wwwroot\data\datatable\wordlist.bin">
2022-09-19 17:07:05 +02:00
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2023-10-16 12:59:55 +02:00
<Content Update="wwwroot\data\datatable\music_order.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2023-10-16 12:59:55 +02:00
<Content Update="wwwroot\data\datatable\musicinfo.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2023-10-16 12:59:55 +02:00
<Content Update="wwwroot\data\datatable\wordlist.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
2022-09-04 19:19:42 +02:00
</Project>