-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBetween.csproj
More file actions
36 lines (30 loc) · 1.39 KB
/
Between.csproj
File metadata and controls
36 lines (30 loc) · 1.39 KB
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
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net46;netstandard2.0;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<LangVersion>7.3</LangVersion>
<!-- Package Info -->
<PackageId>Between</PackageId>
<Version>1.0.0</Version>
<Authors>Jorge Martín</Authors>
<Description>Syntactic sugar for range comparisons in C#. Works with IComparable<T> types. Supports inclusive/exclusive bounds.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/HastaCs/Between</PackageProjectUrl>
<RepositoryUrl>https://github.com/HastaCs/Between</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<!-- XML Documentation -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Between.xml</DocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
<!-- Icon PNG -->
<PackageIcon>icon.png</PackageIcon>
<IncludePackageIcon>true</IncludePackageIcon>
</PropertyGroup>
<ItemGroup>
<!-- Incluye el icono en el paquete -->
<None Include="icon.png" Pack="true" PackagePath="" />
<!-- Incluye README en el paquete -->
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>