-
Notifications
You must be signed in to change notification settings - Fork 0
/
EazyExcel.csproj
28 lines (24 loc) · 937 Bytes
/
EazyExcel.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Description>wrapper around ClosedXML for several common scenarios</Description>
<Copyright>M.I.T</Copyright>
<PackageProjectUrl>https://github.com/exitxhu/EazyExcel</PackageProjectUrl>
<RepositoryUrl>https://github.com/exitxhu/EazyExcel</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Version>$(VersionPrefix)2.2.2</Version>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ClosedXML" Version="0.95.4" />
<PackageReference Include="ClosedXML.Extensions.WebApi" Version="0.2.1" />
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>