-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGadgetry.Workers.csproj
50 lines (42 loc) · 1.74 KB
/
Gadgetry.Workers.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup>
<Product>Gadgetry.Workers</Product>
<PackageId>Gadgetry.Workers</PackageId>
<VersionPrefix>0.0.4</VersionPrefix>
<VersionSuffix>alpha</VersionSuffix>
<PackageDescription>Extensions for Gadgetry to support background workers.</PackageDescription>
<PackageTags>Gadgetry Async</PackageTags>
<RepositoryUrl>https://github.com/Fydar/Gadgetry</RepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<IsPackable>true</IsPackable>
<PackageIconUrl>https://raw.githubusercontent.com/Fydar/Gadgetry/main/src/Gadgetry.Workers/icon.png</PackageIconUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
<None Include="icon.png" Pack="true" PackagePath="" Visible="false" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Gadgetry\Gadgetry.csproj" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="PublicAPI.Shipped.txt" />
<AdditionalFiles Include="PublicAPI.Unshipped.txt" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
<PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" Version="3.3.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>