mirror of
https://github.com/ckaczor/WixBalExtensionExt.git
synced 2026-01-14 01:25:43 -05:00
18 lines
478 B
C
18 lines
478 B
C
/* **************************************************************************
|
|
* WixDistribution.h file contains disribution specific items, such as
|
|
* Product Name.
|
|
*
|
|
* **************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#ifndef __WIXDISTRIBUTION_FILE_H_
|
|
#define __WIXDISTRIBUTION_FILE_H_
|
|
|
|
#ifdef VER_PRODUCT_NAME
|
|
#undef VER_PRODUCT_NAME
|
|
#endif
|
|
#define VER_PRODUCT_NAME "Windows Installer XML"
|
|
|
|
#endif // __WIXDISTRIBUTION_FILE_H_
|