WebSearchDemo.csproj 1.2 KB

12345678910111213141516171819202122232425
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
  5. <Configurations>Debug;Release;String版本;Guid版本;Long版本</Configurations>
  6. <RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
  7. <RunAnalyzersDuringLiveAnalysis>false</RunAnalyzersDuringLiveAnalysis>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  10. <DocumentationFile>D:\Private\Masuit.LuceneEFCore.SearchEngine\WebSearchDemo\WebSearchDemo.xml</DocumentationFile>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.7.1" />
  14. <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.8" />
  15. <PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.8" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="..\Masuit.LuceneEFCore.SearchEngine\Masuit.LuceneEFCore.SearchEngine.csproj" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <Content Update="Posts.json">
  22. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  23. </Content>
  24. </ItemGroup>
  25. </Project>