AI.Platform.Web.csproj 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net10.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <GenerateDocumentationFile>True</GenerateDocumentationFile>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.6" />
  10. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\AI.Platform.Page\AI.Platform.Page.csproj" />
  14. <ProjectReference Include="..\AI.Platform.Service\AI.Platform.Service.csproj" />
  15. <ProjectReference Include="..\AI.Platform.Tool\AI.Platform.Core.csproj" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <Content Update="wwwroot\data\area.json">
  19. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  20. </Content>
  21. <Content Update="wwwroot\data\fake_chart_data.json">
  22. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  23. </Content>
  24. </ItemGroup>
  25. <ItemGroup>
  26. <Folder Include="wwwroot\madia\" />
  27. </ItemGroup>
  28. </Project>