wispro.sp.web.csproj 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
  2. <PropertyGroup>
  3. <TargetFramework>net5</TargetFramework>
  4. <RazorLangVersion>3.0</RazorLangVersion>
  5. <Platforms>AnyCPU;x64;x86</Platforms>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <Compile Remove="AuthProvider.cs" />
  9. </ItemGroup>
  10. <ItemGroup>
  11. <PackageReference Include="AntDesign.Charts" Version="0.2.1" />
  12. <PackageReference Include="AntDesign.ProLayout" Version="0.1.8" />
  13. <PackageReference Include="Blazored.LocalStorage" Version="4.1.5" />
  14. <PackageReference Include="Microsoft.AspNetCore.Authorization" Version="5.0.9" />
  15. <PackageReference Include="Microsoft.AspNetCore.Authorization.Policy" Version="2.2.0" />
  16. <PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="5.0.9" />
  17. <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="5.0.0" />
  18. <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="5.0.0" PrivateAssets="all" />
  19. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.11">
  20. <PrivateAssets>all</PrivateAssets>
  21. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  22. </PackageReference>
  23. <PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="5.0.0" />
  24. <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="5.6.0" />
  25. <PackageReference Include="System.Net.Http.Json" Version="5.0.0" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <ProjectReference Include="..\wispro.sp.share\wispro.sp.share.csproj" />
  29. <ProjectReference Include="..\wospro.sp.entity\wispro.sp.entity.csproj" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <Content Update="wwwroot\data\activities.json">
  33. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  34. </Content>
  35. <Content Update="wwwroot\data\advanced.json">
  36. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  37. </Content>
  38. <Content Update="wwwroot\data\basic.json">
  39. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  40. </Content>
  41. <Content Update="wwwroot\data\current_user.json">
  42. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  43. </Content>
  44. <Content Update="wwwroot\data\fake_chart_data.json">
  45. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  46. </Content>
  47. <Content Update="wwwroot\data\fake_list.json">
  48. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  49. </Content>
  50. <Content Update="wwwroot\data\menu.json">
  51. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  52. </Content>
  53. <Content Update="wwwroot\data\notice.json">
  54. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  55. </Content>
  56. <Content Update="wwwroot\data\notices.json">
  57. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  58. </Content>
  59. <Content Update="wwwroot\pro_icon.svg">
  60. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  61. </Content>
  62. </ItemGroup>
  63. </Project>