-
Notifications
You must be signed in to change notification settings - Fork 355
Adding Installer Telemetry #373
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
0fb47d4
Addin Installer Telemetry
sanyamc-msft 785acc2
InstallerTelemetry2
sanyamc-msft 2cda404
Removing older files
sanyamc-msft 99a5f49
adding indentation
sanyamc-msft 9d75c29
Removing tabs from Buildrelease.ps1
sanyamc-msft a4cba5d
Addressing PR feedback
sanyamc-msft 06f51e2
Added final feedback
sanyamc-msft 77de181
using default wix targets
sanyamc-msft ef73165
Adding build.targets
sanyamc-msft 7b3b336
Adding Build.targets
sanyamc-msft 82500a5
Reverting build.targets changes as my dlls are projects and not dlls …
sanyamc-msft 32ff627
Adding feedback
sanyamc-msft 4931fe4
Adding feedback from CR
sanyamc-msft f1e4aae
Merge pull request #381 from nareshjo/telemetry
mousetraps 3c6a345
Using Checked in wix.ca.targets
sanyamc-msft 190322c
Removing assemblyversions.cs
sanyamc-msft 5a093e5
Fixing releasebuild variable and adding csharp target to build .ca.dl…
sanyamc-msft ca896ec
Adding default AssemblyVersion.cs
sanyamc-msft 34a9c26
Addin Installer Telemetry
sanyamc-msft d1b4d20
InstallerTelemetry2
sanyamc-msft b5c4e10
Removing older files
sanyamc-msft a722233
adding indentation
sanyamc-msft 963acce
Removing tabs from Buildrelease.ps1
sanyamc-msft 82518c9
Addressing PR feedback
sanyamc-msft 135fca0
Added final feedback
sanyamc-msft 8d23423
using default wix targets
sanyamc-msft 7974ad4
Adding build.targets
sanyamc-msft 0a848ce
Reverting build.targets changes as my dlls are projects and not dlls …
sanyamc-msft 8d88318
Adding feedback from CR
sanyamc-msft 7f6c793
Using Checked in wix.ca.targets
sanyamc-msft 3003c20
Fixing releasebuild variable and adding csharp target to build .ca.dl…
sanyamc-msft 7ea8a49
Updating with latest changes from master
sanyamc-msft a6bfc96
Merging files
sanyamc-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
Adding feedback from CR
- Loading branch information
commit 4931fe40caf386d5482529726f4c9b3b4ff829c3
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -157,7 +157,7 @@ | |
| <CustomAction Id="VWDExpressSetup" Property="VWDEXPRESS_PATH" ExeCommand="/setup" Execute="deferred" Return="check" Impersonate="no" /> | ||
| <CustomAction Id="VWDExpressSetup_Rollback" Property="VWDEXPRESS_PATH" ExeCommand="/setup" Execute="rollback" Return="check" Impersonate="no" /> | ||
|
|
||
| <?if "$(var.ReleaseBuild)" = "True" ?> | ||
| <?if "$(var.ReleaseBuild)" ~= "" ?> | ||
| <Binary Id="InstallerTelemetryAction.CA.dll" SourceFile="..\..\..\BuildOutput\$(var.Configuration)$(var.VSTargetVersion)\Setup\Microsoft.NodejsTools.InstallerTelemetryAction.CA.dll" /> | ||
|
Contributor
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. $(BuildOutputRoot) should already be defined here.
Contributor
Author
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. Gave me build error when I tried using above and $(var.BuildOutputRoot)....keeping it as it is? |
||
|
|
||
| <!-- Custom Action for installer telemetry--> | ||
|
|
@@ -173,7 +173,7 @@ | |
| <Custom Action="DevEnvSetup" Before="InstallFinalize" Overridable="yes">NOT SKIP_DEVENV_SETUP AND DEVENV_PATH</Custom> | ||
| <Custom Action="VWDExpressSetup_Rollback" Before="VWDExpressSetup" Overridable="yes">NOT SKIP_DEVENV_SETUP AND VWDEXPRESS_PATH</Custom> | ||
| <Custom Action="VWDExpressSetup" Before="InstallFinalize" Overridable="yes">NOT SKIP_DEVENV_SETUP AND VWDEXPRESS_PATH</Custom> | ||
| <?if "$(var.ReleaseBuild)" = "True" ?> | ||
| <?if "$(var.ReleaseBuild)" ~= "" ?> | ||
| <Custom Action="LogStart" Before="CostFinalize"/> | ||
| <Custom Action="LogSuccess" OnExit="success"/> | ||
| <Custom Action="LogFailure" OnExit="error" /> | ||
|
|
||
This file contains hidden or 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
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.
Braces on same line here and everywhere else.