123456789101112131415161718192021 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net6.0</TargetFramework>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DebugType>full</DebugType>
- <DebugSymbols>true</DebugSymbols>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="NPOI" Version="2.5.4" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Lib1\Lib1.csproj" />
- </ItemGroup>
- </Project>
|