forked from mlof/Magento.RestClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
28 lines (25 loc) · 1.18 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
<Project>
<PropertyGroup>
<Deterministic>true</Deterministic>
<Authors>mlof</Authors>
<Company />
<Description>Client for the Magento 2.x REST api.</Description>
<Copyright>Copyright 2021 Marcel Lof</Copyright>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
<RepositoryUrl>https://github.com/mlof/Magento.RestClient</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<IncludeSymbols>true</IncludeSymbols>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Nullable>disable</Nullable>
<tags>magento client ecommerce</tags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="GitVersion.MsBuild" Version="5.6.11">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>