-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDirectory.Build.props
30 lines (25 loc) · 1.3 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
28
29
30
<Project>
<PropertyGroup Label="Build">
<LangVersion>latest</LangVersion>
<AnalysisLevel>latest</AnalysisLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Label="Package">
<Authors>GeeWee</Authors>
<Company>ScadaMinds</Company>
<Copyright>Copyright © Gustav Wengel. All rights Reserved</Copyright>
<PackageDescription>
Fixed a wide variety of issues that have to do with Hosted Services and BackgroundServices, such as error handling and the abillity to access them via the DI. See more at https://github.com/GeeWee/BetterHostedServices
</PackageDescription>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/geewee/BetterHostedServices</PackageProjectUrl>
<!-- <PackageIcon>Images/Icon.png</PackageIcon>-->
<RepositoryUrl>https://github.com/geewee/BetterHostedServices.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>https://github.com/geewee/BetterHostedServices/releases</PackageReleaseNotes>
<PackageTags>aspnet;aspnetcore;hostedservices;backgroundservices;</PackageTags>
</PropertyGroup>
<ItemGroup Label="Package References">
<PackageReference Include="MinVer" PrivateAssets="all" Version="2.3.1" />
</ItemGroup>
</Project>