ExcelORM.csproj 1006 B

12345678910111213141516171819202122232425
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <Version>1.0.3</Version>
  7. <PackageProjectUrl>https://git.liox.eu/pczajkowski/ExcelORM</PackageProjectUrl>
  8. <RepositoryUrl>https://github.com/pczajkowski/ExcelORM</RepositoryUrl>
  9. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  10. <PackageReadmeFile>README.md</PackageReadmeFile>
  11. <PackageLicenseFile>LICENSE</PackageLicenseFile>
  12. <Title>ExcelORM</Title>
  13. <Authors>Piotr Czajkowski</Authors>
  14. <Description>Simple library to read/write C# objects from/to Excel files. </Description>
  15. <RepositoryType>GitHub</RepositoryType>
  16. </PropertyGroup>
  17. <ItemGroup>
  18. <PackageReference Include="ClosedXML" Version="0.102.1" />
  19. <None Include="../../README.md" Pack="true" PackagePath="\"/>
  20. <None Include="../../LICENSE" Pack="true" PackagePath=""/>
  21. </ItemGroup>
  22. </Project>