diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/WixToolset.BuildTasks/GenerateCompileWithObjectPath.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.BuildTasks/GenerateCompileWithObjectPath.cs b/src/WixToolset.BuildTasks/GenerateCompileWithObjectPath.cs index 06c8b98a..c4a5cefe 100644 --- a/src/WixToolset.BuildTasks/GenerateCompileWithObjectPath.cs +++ b/src/WixToolset.BuildTasks/GenerateCompileWithObjectPath.cs | |||
@@ -62,9 +62,9 @@ namespace WixToolset.BuildTasks | |||
62 | // hash the data | 62 | // hash the data |
63 | byte[] hash; | 63 | byte[] hash; |
64 | 64 | ||
65 | using (MD5 md5 = new MD5CryptoServiceProvider()) | 65 | using (SHA1 sha1 = new SHA1CryptoServiceProvider()) |
66 | { | 66 | { |
67 | hash = md5.ComputeHash(data); | 67 | hash = sha1.ComputeHash(data); |
68 | } | 68 | } |
69 | 69 | ||
70 | // build up the identifier | 70 | // build up the identifier |