-
Notifications
You must be signed in to change notification settings - Fork 0
/
CommonUtils.csproj
30 lines (27 loc) · 1.13 KB
/
CommonUtils.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
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>API Utilities</Title>
<Authors>Vilarj</Authors>
<Description>Common checking library for API development. It checks for null values, negative numbers, extra space at the end of a string...
The library throws handling exceptions for making the developer's life easier.</Description>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<AnalysisLevel>6.0-all</AnalysisLevel>
<PackageTags>Utilities;API;Reusable-Code</PackageTags>
<PackageId>API-Utilities</PackageId>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/vilarj/CommonUtils</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Version>1.0.1</Version>
</PropertyGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>