-
Notifications
You must be signed in to change notification settings - Fork 324
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding the proj file for publishing the nuget packages to dotnet net …
…feed. (#2198)
- Loading branch information
1 parent
33a2be6
commit 6b96f5b
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net461</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.DotNet.Build.Tasks.Feed" Version="2.1.0-preview2-02522-03" /> | ||
<ToPublish Include="$(PackagePublishGlob)" /> | ||
</ItemGroup> | ||
|
||
<Target Name="PublishToCentralBlobFeed"> | ||
<PushToBlobFeed | ||
ExpectedFeedUrl="$(CentralBlobFeedUrl)" | ||
AccountKey="$(AccountKey)" | ||
ItemsToPush="@(ToPublish)" | ||
PassIfExistingItemIdentical="$(PassIfExistingItemIdentical)" | ||
Overwrite="$(OverwriteCentralBlobFeed)" /> | ||
</Target> | ||
</Project> |