12345678910111213141516171819202122232425 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net8.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- </PropertyGroup>
- <ItemGroup>
- <Compile Remove="utility.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\IPRS.xiaoshi.sz.com\IPRS.xiaoshi.sz.com.csproj" />
- <ProjectReference Include="..\trieTree\trieTree.csproj" />
- </ItemGroup>
- <ItemGroup>
- <None Update="data\area_code_2024.csv">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|