wispro.sp.web.csproj 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. <Compile Remove="Models\ProjectInfo.cs" />
  10. <Compile Remove="Pages\AppCase\ShensuReview.razor.cs" />
  11. <Compile Remove="Pages\Project\ConfirmProjectPoint.razor.cs" />
  12. <Compile Remove="Pages\Project\ProjectList.razor.cs" />
  13. <Compile Remove="Pages\Project\ReadAssignPointMsg.razor.cs" />
  14. <Compile Remove="Pages\Project\ReadMessage.razor.cs" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <Content Remove="Pages\AppCase\ShensuReview.razor" />
  18. <Content Remove="Pages\Project\ConfirmProjectPoint.razor" />
  19. <Content Remove="Pages\Project\ProjectList.razor" />
  20. <Content Remove="Pages\Project\ReadAssignPointMsg.razor" />
  21. <Content Remove="Pages\Project\ReadMessage.razor" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <PackageReference Include="AntDesign.Charts" Version="0.2.1" />
  25. <PackageReference Include="AntDesign.ProLayout" Version="0.1.8" />
  26. <PackageReference Include="Blazor.ContextMenu" Version="1.10.1" />
  27. <PackageReference Include="Blazored.LocalStorage" Version="4.1.5" />
  28. <PackageReference Include="DynamicExpresso.Core" Version="2.9.3" />
  29. <PackageReference Include="Microsoft.AspNetCore.Authorization" Version="6.0.0" />
  30. <PackageReference Include="Microsoft.AspNetCore.Authorization.Policy" Version="2.2.0" />
  31. <PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="5.0.9" />
  32. <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="5.0.0" />
  33. <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="5.0.0" PrivateAssets="all" />
  34. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.11">
  35. <PrivateAssets>all</PrivateAssets>
  36. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  37. </PackageReference>
  38. <PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="5.0.0" />
  39. <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="5.6.0" />
  40. <PackageReference Include="System.Net.Http.Json" Version="5.0.0" />
  41. </ItemGroup>
  42. <ItemGroup>
  43. <ProjectReference Include="..\wispro.sp.share\wispro.sp.share.csproj" />
  44. <ProjectReference Include="..\wospro.sp.entity\wispro.sp.entity.csproj" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <Content Update="wwwroot\data\activities.json">
  48. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  49. </Content>
  50. <Content Update="wwwroot\data\advanced.json">
  51. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  52. </Content>
  53. <Content Update="wwwroot\data\basic.json">
  54. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  55. </Content>
  56. <Content Update="wwwroot\data\current_user.json">
  57. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  58. </Content>
  59. <Content Update="wwwroot\data\fake_chart_data.json">
  60. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  61. </Content>
  62. <Content Update="wwwroot\data\fake_list.json">
  63. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  64. </Content>
  65. <Content Update="wwwroot\data\menu.json">
  66. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  67. </Content>
  68. <Content Update="wwwroot\data\notice.json">
  69. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  70. </Content>
  71. <Content Update="wwwroot\data\notices.json">
  72. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  73. </Content>
  74. <Content Update="wwwroot\pro_icon.svg">
  75. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  76. </Content>
  77. </ItemGroup>
  78. </Project>