-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
27 lines (23 loc) · 1.03 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.321">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<PropertyGroup>
<Authors>Max Obrist</Authors>
<Product>Cranks.Result</Product>
<Description>A simple, strongly typed and boilerplate poor implementation of the Result pattern.</Description>
<Copyright>2021 Max Obrist</Copyright>
<PackageProjectUrl>https://github.com/crazycrank/Cranks.Result</PackageProjectUrl>
<RepositoryUrl>https://github.com/crazycrank/Cranks.Result</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<PackageTags>result results failure failed error exception handling success passed</PackageTags>
</PropertyGroup>
</Project>