-
Notifications
You must be signed in to change notification settings - Fork 222
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
Create msi for windows #2819
Draft
dphulkar-msft
wants to merge
51
commits into
main
Choose a base branch
from
dphulkar/wingetPackage
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Create msi for windows #2819
Changes from 32 commits
Commits
Show all changes
51 commits
Select commit
Hold shift + click to select a range
bd0722b
creating azcopy msi installer
dphulkar-msft f2651b0
Create windows msi
dphulkar-msft b5df7db
Create windows msi
dphulkar-msft 07e5f5e
Create windows msi
dphulkar-msft e84a248
Create windows msi
dphulkar-msft 9173779
Create windows msi
dphulkar-msft e134d48
Create windows msi
dphulkar-msft 0b49218
Create windows msi
dphulkar-msft 8371f1a
Create windows msi
dphulkar-msft 28ff617
Create windows msi
dphulkar-msft 24b4c27
Create windows msi
dphulkar-msft 28672eb
Create windows msi
dphulkar-msft 333d8a4
Create windows msi
dphulkar-msft f53f39a
Create windows msi
dphulkar-msft 8b8290a
Create windows msi
dphulkar-msft d17c4dc
Create windows msi
dphulkar-msft 04f31a7
Create windows msi
dphulkar-msft 78d9287
Create windows msi
dphulkar-msft 07890ab
Create windows msi
dphulkar-msft bfded4a
Create windows msi
dphulkar-msft 5da3c02
Create windows msi
dphulkar-msft f552be5
Create windows msi
dphulkar-msft 5783cc2
Create windows msi
dphulkar-msft d4d1cd4
Create windows msi
dphulkar-msft 1f4fbda
Create windows msi
dphulkar-msft 8500d18
Create windows msi
dphulkar-msft 599fe81
Create windows msi
dphulkar-msft 2b59069
Create windows msi
dphulkar-msft 560acbc
Create windows msi
dphulkar-msft fa836d6
Create windows msi
dphulkar-msft 6a63cab
Create windows msi
dphulkar-msft 56d0cdf
Create windows msi
dphulkar-msft ebf5389
Merge branch 'main' of https://github.com/Azure/azure-storage-azcopy …
dphulkar-msft f50f469
Merge branch 'main' of https://github.com/Azure/azure-storage-azcopy …
dphulkar-msft 85ee524
create windows msi
dphulkar-msft 1a3104c
create windows msi
dphulkar-msft de165d7
create windows msi
dphulkar-msft 5941470
create windows msi
dphulkar-msft d57b439
create windows msi
dphulkar-msft 49ed85a
create windows msi
dphulkar-msft f04a07d
Merge branch 'main' of https://github.com/Azure/azure-storage-azcopy …
dphulkar-msft 0de3c25
create windows msi
dphulkar-msft c9062e5
create windows msi
dphulkar-msft bb953ad
Merge branch 'main' of https://github.com/Azure/azure-storage-azcopy …
dphulkar-msft a1277c9
create msi
dphulkar-msft f8851ed
create msi
dphulkar-msft 802e04a
create msi
dphulkar-msft 56f968d
create msi
dphulkar-msft a18d80d
create msi
dphulkar-msft 63f694c
create msi
dphulkar-msft 2b1eb4d
create msi
dphulkar-msft File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> | ||
<Product Id="*" Name="azcopy" Language="1033" Version="10.26.0" Manufacturer="Microsoft" UpgradeCode="abeee33a-0cca-4060-89d7-0687f7374f7a"> | ||
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" /> | ||
|
||
<MediaTemplate /> | ||
|
||
<Directory Id="TARGETDIR" Name="SourceDir"> | ||
<Directory Id="ProgramFilesFolder"> | ||
<Directory Id="INSTALLDIR" Name="azcopy"> | ||
<Component Id="azcopy.exe" Guid="abeee33a-0cca-4060-89d7-0687f7374f7a"> | ||
<File Id="azcopy.exe" Source="azcopy_executable_path" /> | ||
</Component> | ||
</Directory> | ||
</Directory> | ||
</Directory> | ||
|
||
<Feature Id="ProductFeature" Title="AzCopy" Level="1"> | ||
<ComponentRef Id="azcopy.exe" /> | ||
</Feature> | ||
</Product> | ||
</Wix> |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will this version need to change every release? If so, we should add a section to the release process to double check this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes this is the PR in progress not ready for review. Yes will not be using the Version as static value. Will make the changes for it