testtrieTree.csproj 640 B

12345678910111213141516171819202122232425
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <Compile Remove="utility.cs" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <ProjectReference Include="..\IPRS.xiaoshi.sz.com\IPRS.xiaoshi.sz.com.csproj" />
  13. <ProjectReference Include="..\trieTree\trieTree.csproj" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <None Update="data\area_code_2024.csv">
  17. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  18. </None>
  19. </ItemGroup>
  20. </Project>