DataTransfer.csproj 583 B

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net5.0</TargetFramework>
  5. </PropertyGroup>
  6. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  7. <DebugType>full</DebugType>
  8. <DebugSymbols>true</DebugSymbols>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="MySql.Data" Version="8.0.25" />
  12. <PackageReference Include="StackExchange.Redis" Version="2.2.50" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="..\Lib1\Lib1.csproj" />
  16. </ItemGroup>
  17. </Project>