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-04 19:19:42 +02:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.7" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.7" PrivateAssets="all" />
|
2022-09-06 16:32:36 +02:00
|
|
|
<PackageReference Include="MudBlazor" Version="6.0.15" />
|
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-09 17:14:59 +02:00
|
|
|
<Content Update="wwwroot\appsettings.json">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
2022-09-09 19:27:20 +02:00
|
|
|
<Content Update="wwwroot\data\musicinfo.json">
|
2022-09-09 14:31:45 +02:00
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
2022-09-09 19:27:20 +02:00
|
|
|
<Content Update="wwwroot\data\wordlist.json">
|
2022-09-09 14:31:45 +02:00
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
2022-09-12 11:29:29 +02:00
|
|
|
<Content Update="wwwroot\data\music_order.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>
|