-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpack.props
42 lines (40 loc) · 1.51 KB
/
pack.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
31
32
33
34
35
36
37
38
39
40
41
42
<Project>
<Import Project="versions.props" />
<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Elton Schivei Costa</Authors>
<Company>Elton Schivei Costa</Company>
<Product>Dgraph for .NET</Product>
<Description>Dgraph4Net is based on dgo (https://github.com/Dgraph-io/dgo), a Dgraph client for GoLang.</Description>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageProjectUrl>https://github.com/schivei/dgraph4net</PackageProjectUrl>
<PackageIcon>logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/schivei/dgraph4net</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>Dgraph,client,dotnet</PackageTags>
<PackageReleaseNotes>Update references</PackageReleaseNotes>
<DebugType>Full</DebugType>
<PackOnBuild>true</PackOnBuild>
<PackageVersion>$(Version)</PackageVersion>
<ReleaseVersion>$(Version)</ReleaseVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<NoWarn>$(NoWarn);nullable</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\..\logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>