We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33a2be6 commit 6b96f5bCopy full SHA for 6b96f5b
src/package/publish/build.proj
@@ -0,0 +1,19 @@
1
+<Project Sdk="Microsoft.NET.Sdk">
2
+ <PropertyGroup>
3
+ <TargetFramework>net461</TargetFramework>
4
+ </PropertyGroup>
5
+
6
+ <ItemGroup>
7
+ <PackageReference Include="Microsoft.DotNet.Build.Tasks.Feed" Version="2.1.0-preview2-02522-03" />
8
+ <ToPublish Include="$(PackagePublishGlob)" />
9
+ </ItemGroup>
10
11
+ <Target Name="PublishToCentralBlobFeed">
12
+ <PushToBlobFeed
13
+ ExpectedFeedUrl="$(CentralBlobFeedUrl)"
14
+ AccountKey="$(AccountKey)"
15
+ ItemsToPush="@(ToPublish)"
16
+ PassIfExistingItemIdentical="$(PassIfExistingItemIdentical)"
17
+ Overwrite="$(OverwriteCentralBlobFeed)" />
18
+ </Target>
19
+</Project>
0 commit comments