wispro.sp.web.csproj 2.8 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.4" />
  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.Extensions.Options.ConfigurationExtensions" Version="5.0.0" />
  20. <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="5.6.0" />
  21. <PackageReference Include="System.Net.Http.Json" Version="5.0.0" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <ProjectReference Include="..\wispro.sp.share\wispro.sp.share.csproj" />
  25. <ProjectReference Include="..\wospro.sp.entity\wispro.sp.entity.csproj" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <Content Update="wwwroot\data\activities.json">
  29. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  30. </Content>
  31. <Content Update="wwwroot\data\advanced.json">
  32. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  33. </Content>
  34. <Content Update="wwwroot\data\basic.json">
  35. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  36. </Content>
  37. <Content Update="wwwroot\data\current_user.json">
  38. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  39. </Content>
  40. <Content Update="wwwroot\data\fake_chart_data.json">
  41. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  42. </Content>
  43. <Content Update="wwwroot\data\fake_list.json">
  44. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  45. </Content>
  46. <Content Update="wwwroot\data\menu.json">
  47. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  48. </Content>
  49. <Content Update="wwwroot\data\notice.json">
  50. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  51. </Content>
  52. <Content Update="wwwroot\data\notices.json">
  53. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  54. </Content>
  55. <Content Update="wwwroot\pro_icon.svg">
  56. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  57. </Content>
  58. </ItemGroup>
  59. <ItemGroup>
  60. <Folder Include="Pages\AppCase\" />
  61. </ItemGroup>
  62. </Project>