-
Notifications
You must be signed in to change notification settings - Fork 65
Enable publishing in VMR #4215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable publishing in VMR #4215
Changes from all commits
823aa94
980d597
849fac7
db4760b
3b946d6
83d7216
b3bb9d8
e4ccaba
2943339
2190636
deb39fb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,31 @@ | ||
| <Project> | ||
| <PropertyGroup> | ||
| <ProducesDotNetReleaseShippingAssets>true</ProducesDotNetReleaseShippingAssets> | ||
| </PropertyGroup> | ||
| </Project> | ||
|
|
||
| <PropertyGroup> | ||
| <ProducesDotNetReleaseShippingAssets>true</ProducesDotNetReleaseShippingAssets> | ||
| </PropertyGroup> | ||
|
|
||
| <!-- Include installer archives and packages which aren't globbed by default. --> | ||
| <Target Name="PublishWindowsDesktopInstallers" | ||
| BeforeTargets="BeforePublish" | ||
| Condition="'$(DotNetBuildRepo)' == 'true'"> | ||
| <!-- Retrieve windows desktop runtime pack product version. | ||
| Don't stabilize the package version in order to retrieve the VersionSuffix. --> | ||
| <MSBuild Projects="$(RepoRoot)src/windowsdesktop/src/sfx/Microsoft.WindowsDesktop.App.Runtime.sfxproj" | ||
| Targets="ReturnProductVersion" | ||
| Properties="IsShipping=false"> | ||
| <Output TaskParameter="TargetOutputs" PropertyName="WindowsDesktopRuntimePackProductVersion" /> | ||
| </MSBuild> | ||
|
|
||
| <ItemGroup> | ||
| <InstallerToPublish Include="$(ArtifactsPackagesDir)**\*.zip; | ||
| $(ArtifactsPackagesDir)**\*.exe; | ||
| $(ArtifactsPackagesDir)**\*.msi" /> | ||
| <ItemsToPushToBlobFeed Include="@(InstallerToPublish)" | ||
| IsShipping="true" | ||
| ManifestArtifactData="DotNetReleaseShipping=true" | ||
| PublishFlatContainer="true" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @mmitche any idea why this metadata is set? Just double checking if this is right. There isn't much documentation for this parameter. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. PublishFlatContainer? This just says "I'm a blob not a package". It used to refer to some sleet feed vs. blob artifact pivot. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. cool, thanks |
||
| RelativeBlobPath="WindowsDesktop/$(WindowsDesktopRuntimePackProductVersion)/%(Filename)%(Extension)" /> | ||
| </ItemGroup> | ||
| </Target> | ||
|
|
||
| </Project> | ||
Uh oh!
There was an error while loading. Please reload this page.