diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-02-11 13:46:45 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-02-11 13:52:29 -0800 |
| commit | c6e2213e818b869c44c1af7355fc06f45ebf1a1f (patch) | |
| tree | db01cac18404c9be74c95183956b1ceb517ef5c8 /src/WixToolset.Core/CompileContext.cs | |
| parent | 0fcb0cb1d0a2f741f83feb76bc276926f499686d (diff) | |
| download | wix-c6e2213e818b869c44c1af7355fc06f45ebf1a1f.tar.gz wix-c6e2213e818b869c44c1af7355fc06f45ebf1a1f.tar.bz2 wix-c6e2213e818b869c44c1af7355fc06f45ebf1a1f.zip | |
Replace Win64 attribute with Bitness attribute
Closes wixtoolset/#4707
Diffstat (limited to 'src/WixToolset.Core/CompileContext.cs')
| -rw-r--r-- | src/WixToolset.Core/CompileContext.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/WixToolset.Core/CompileContext.cs b/src/WixToolset.Core/CompileContext.cs index 44da6c8a..e781b692 100644 --- a/src/WixToolset.Core/CompileContext.cs +++ b/src/WixToolset.Core/CompileContext.cs | |||
| @@ -25,6 +25,8 @@ namespace WixToolset.Core | |||
| 25 | 25 | ||
| 26 | public Platform Platform { get; set; } | 26 | public Platform Platform { get; set; } |
| 27 | 27 | ||
| 28 | public bool IsCurrentPlatform64Bit => this.Platform == Platform.ARM64 || this.Platform == Platform.X64; | ||
| 29 | |||
| 28 | public XDocument Source { get; set; } | 30 | public XDocument Source { get; set; } |
| 29 | 31 | ||
| 30 | public CancellationToken CancellationToken { get; set; } | 32 | public CancellationToken CancellationToken { get; set; } |
