ProcessFiles.csproj 843 B

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <Nullable>enable</Nullable>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <Version>0.1.0</Version>
  6. <Title>ProcessFiles</Title>
  7. <Authors>Piotr Czajkowski</Authors>
  8. <Description>Easily process files from command line arguments</Description>
  9. <PackageProjectUrl>https://git.liox.eu/pczajkowski/ProcessFiles</PackageProjectUrl>
  10. <RepositoryUrl>https://github.com/pczajkowski/ProcessFiles</RepositoryUrl>
  11. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  12. <PackageReadmeFile>README.md</PackageReadmeFile>
  13. <PackageLicenseFile>LICENSE.md</PackageLicenseFile>
  14. <RepositoryType>GitHub</RepositoryType>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <None Include="../README.md" Pack="true" PackagePath=""/>
  18. <None Include="../LICENSE.md" Pack="true" PackagePath=""/>
  19. </ItemGroup>
  20. </Project>