OldWorldDataAdaptor.csproj 949 B

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <FrameworkReference Include="Microsoft.AspNetCore.App" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <PackageReference Include="Mapster" />
  13. <PackageReference Include="Microsoft.AspNetCore.SignalR.Common" />
  14. <PackageReference Include="System.ServiceModel.NetTcp" />
  15. <PackageReference Include="System.ServiceModel.Primitives" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="..\..\Universal\Universal.csproj" />
  19. <ProjectReference Include="..\DataQueryBase\DataQueryBase.csproj" />
  20. <ProjectReference Include="..\OldWorldData\OldWorldData.csproj" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <Folder Include="DataType\" />
  24. <Folder Include="Services\" />
  25. </ItemGroup>
  26. </Project>