Newer
Older
DungeonShooting / DungeonShooting_ExcelTool / DungeonShooting_ExcelTool.csproj
@小李xl 小李xl on 10 Jun 2023 649 bytes 导出excel表数据支持依赖其他表
<Project Sdk="Microsoft.NET.Sdk">

    <PropertyGroup>
        <OutputType>Exe</OutputType>
        <TargetFramework>net6.0</TargetFramework>
        <ImplicitUsings>enable</ImplicitUsings>
        <Nullable>enable</Nullable>
    </PropertyGroup>

    <ItemGroup>
      <PackageReference Include="NPOI" Version="2.6.0" />
    </ItemGroup>
    
    <ItemGroup>
        <None Include="excelFile/**">
            <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
        </None>
        <None Update="excelFile\Test.xlsx">
          <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
        </None>
    </ItemGroup>

</Project>