| 12345678910111213141516171819202122232425262728293031323334 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <TargetFramework>net10.0</TargetFramework>
- <Nullable>enable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- <GenerateDocumentationFile>True</GenerateDocumentationFile>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.6" />
- <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\AI.Platform.Page\AI.Platform.Page.csproj" />
- <ProjectReference Include="..\AI.Platform.Service\AI.Platform.Service.csproj" />
- <ProjectReference Include="..\AI.Platform.Tool\AI.Platform.Core.csproj" />
- </ItemGroup>
-
- <ItemGroup>
- <Content Update="wwwroot\data\area.json">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </Content>
- <Content Update="wwwroot\data\fake_chart_data.json">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
-
- <ItemGroup>
- <Folder Include="wwwroot\madia\" />
- </ItemGroup>
- </Project>
|