safeutils.csproj 1.5 KB

123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <PackageId>SafeUtils</PackageId>
  4. <Version>0.0.1</Version>
  5. <Authors>Wiktor Plaga</Authors>
  6. <Title>SafeUtils</Title>
  7. <Description>SafeUtils: Native MacOS, Linux and Windows desktop application with 110+ carefully crafted tools for yours and your teams everyday work with sensitive data in various formats.</Description>
  8. <Copyright>Copyright (c) Wiktor Plaga 2024</Copyright>
  9. <Company>safeutils</Company>
  10. <PackageProjectUrl>https://safeutils.com</PackageProjectUrl>
  11. <RepositoryUrl>https://github.com/safe-utils/safeutils</RepositoryUrl>
  12. <PackageIcon>icon.png</PackageIcon>
  13. <PackageReadmeFile>README.md</PackageReadmeFile>
  14. <PackageTags>convert;generate;decode;encode;parse;preview;debug;inspect;json;yaml;csv;toml;xml;time;color</PackageTags>
  15. <PackageLicenseFile>LICENSE.md</PackageLicenseFile>
  16. <TargetFramework>net8.0</TargetFramework>
  17. <RootNamespace>safeutils</RootNamespace>
  18. <ImplicitUsings>enable</ImplicitUsings>
  19. <Nullable>enable</Nullable>
  20. <OutputType>Library</OutputType>
  21. <_FunctionsSkipCleanOutput>true</_FunctionsSkipCleanOutput>
  22. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  23. </PropertyGroup>
  24. <ItemGroup>
  25. <None Include="README.md" Pack="true" PackagePath="\"/>
  26. <None Include="LICENSE.md" Pack="true" PackagePath="\"/>
  27. <None Include="assets\logo\512x512.png" Pack="true" PackagePath="\icon.png"/>
  28. </ItemGroup>
  29. </Project>