Skip to content

Commit

Permalink
Merge pull request #43 from nventive/dev/beca/nuget
Browse files Browse the repository at this point in the history
Dev/beca/nuget
  • Loading branch information
Benjamin Cartier authored Mar 12, 2020
2 parents d67b86c + 7240747 commit 71c22e4
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ variables:
value: true

steps:
- task: GitVersion@4
- task: GitVersion@5

- task: NuGetToolInstaller@1
inputs:
Expand Down
18 changes: 18 additions & 0 deletions src/NuGet.Downloader.Tool/NuGet.Downloader.Tool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@
<TargetFramework>netcoreapp2.2</TargetFramework>
</PropertyGroup>

<!-- NuGet metadata -->
<PropertyGroup>
<PackageId>nventive.NuGet.Downloader.Tool</PackageId>
<Authors>nventive</Authors>
<Owners>nventive</Owners>
<Description>Nuget Dowloader allows to download the NuGet packages found in a solution</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/nventive/NuGet.Updater</PackageProjectUrl>
</PropertyGroup>

<ItemGroup>
<None Include="../icon.png">
<Pack>True</Pack>
<PackagePath />
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Mono.Options" Version="5.3.0.1" />
</ItemGroup>
Expand Down
18 changes: 18 additions & 0 deletions src/NuGet.Downloader/NuGet.Downloader.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@
<TargetFrameworks>netstandard20;net472</TargetFrameworks>
</PropertyGroup>

<!-- NuGet metadata -->
<PropertyGroup>
<PackageId>nventive.NuGet.Downloader</PackageId>
<Authors>nventive</Authors>
<Owners>nventive</Owners>
<Description>Nuget Dowloader allows to download the NuGet packages found in a solution</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/nventive/NuGet.Updater</PackageProjectUrl>
</PropertyGroup>

<ItemGroup>
<None Include="../icon.png">
<Pack>True</Pack>
<PackagePath />
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Uno.Core" Version="1.28.0" />
</ItemGroup>
Expand Down

0 comments on commit 71c22e4

Please sign in to comment.