| Index: test/msvs/external_builder/msbuild_action.py
|
| diff --git a/test/msvs/external_builder/msbuild_action.py b/test/msvs/external_builder/msbuild_action.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..19a80d4584eaff93b2970e41ea91947e625c92d9
|
| --- /dev/null
|
| +++ b/test/msvs/external_builder/msbuild_action.py
|
| @@ -0,0 +1,9 @@
|
| +# Copyright (c) 2013 Bloomberg LP. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +import sys
|
| +
|
| +with open('msbuild_action.out', 'w') as f:
|
| + f.write(' '.join(sys.argv))
|
| +
|
|
|