AddressPaser.csproj 913 B

1234567891011121314151617181920212223242526272829
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <GenerateDocumentationFile>True</GenerateDocumentationFile>
  7. <UserSecretsId>ed9c8d39-9770-4a86-93f6-0cfa6377eff8</UserSecretsId>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\IPRS.xiaoshi.sz.com\IPRS.xiaoshi.sz.com.csproj" />
  14. <ProjectReference Include="..\trieTree\trieTree.csproj" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <None Update="data\area_code_2024.csv">
  18. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  19. </None>
  20. <None Update="Properties\launchSettings.json">
  21. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  22. </None>
  23. </ItemGroup>
  24. </Project>