-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
19 lines (18 loc) · 867 Bytes
/
Directory.Build.props
File metadata and controls
19 lines (18 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project>
<PropertyGroup>
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<PackageId>$(ProjectName)</PackageId>
<PackageVersion>0.1.0-alpha1</PackageVersion>
<Version>0.1.0-alpha1</Version>
<Authors>Diego Frata</Authors>
<RepositoryUrl>https://github.com/diegofrata/Generator.Equals</RepositoryUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>A source code generator for automatically implementing IEquatable<T> using only attributes.</Description>
<PackageTags>source generator, equality, equals, equatable</PackageTags>
<NoPackageAnalysis>true</NoPackageAnalysis>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
</Project>