Browse Source

For nuget

Piotr Czajkowski 4 months ago
parent
commit
712c7ffb41
1 changed files with 13 additions and 1 deletions
  1. 13 1
      ExcelInfo/ExcelInfo/ExcelInfo.csproj

+ 13 - 1
ExcelInfo/ExcelInfo/ExcelInfo.csproj

@@ -4,10 +4,22 @@
         <TargetFramework>net7.0</TargetFramework>
         <ImplicitUsings>enable</ImplicitUsings>
         <Nullable>enable</Nullable>
+	<Version>1.0.0</Version>
+	<PackageProjectUrl>https://git.liox.eu/pczajkowski/ExcelInfo</PackageProjectUrl>
+        <RepositoryUrl>https://github.com/pczajkowski/ExcelInfo</RepositoryUrl>
+        <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
+	<PackageReadmeFile>README.md</PackageReadmeFile>
+	<PackageLicenseFile>LICENSE</PackageLicenseFile>
+	<Title>ExcelInfo</Title>
+	<Authors>Piotr Czajkowski</Authors>
+	<Description>Simple library for getting information on Excel file's worksheets and their columns.</Description>
+	<RepositoryType>GitHub</RepositoryType>
     </PropertyGroup>
 
     <ItemGroup>
-      <PackageReference Include="ClosedXML" Version="0.102.1" />
+	    <PackageReference Include="ClosedXML" Version="0.102.1" />
+	    <None Include="../../README.md" Pack="true" PackagePath=""/>
+	    <None Include="../../LICENSE" Pack="true" PackagePath=""/>
     </ItemGroup>
 
 </Project>