DataTransfer.csproj 504 B

123456789101112131415161718192021
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net6.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="NPOI" Version="2.5.4" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ProjectReference Include="..\Lib1\Lib1.csproj" />
  15. </ItemGroup>
  16. </Project>