diff options
| author | Bevan Weiss <bevan.weiss@gmail.com> | 2025-01-03 15:14:49 +1100 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2025-02-11 14:55:39 -0800 |
| commit | c49432f7d39dfe7fedc722b85cd1162bd5096ac1 (patch) | |
| tree | 5f319208fffbb2a9215af627f7ee21a2425ece0e /src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNET4/AssemblyInfo.cs | |
| parent | 254196975c1f82bf7079a9d56b5417f5da9d8d76 (diff) | |
| download | wix-c49432f7d39dfe7fedc722b85cd1162bd5096ac1.tar.gz wix-c49432f7d39dfe7fedc722b85cd1162bd5096ac1.tar.bz2 wix-c49432f7d39dfe7fedc722b85cd1162bd5096ac1.zip | |
Migrate COM+ E2E tests from raw binaries to source code.
Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
Diffstat (limited to 'src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNET4/AssemblyInfo.cs')
| -rw-r--r-- | src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNET4/AssemblyInfo.cs | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNET4/AssemblyInfo.cs b/src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNET4/AssemblyInfo.cs new file mode 100644 index 00000000..83e802dd --- /dev/null +++ b/src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNET4/AssemblyInfo.cs | |||
| @@ -0,0 +1,57 @@ | |||
| 1 | using System.Reflection; | ||
| 2 | |||
| 3 | // | ||
| 4 | // General Information about an assembly is controlled through the following | ||
| 5 | // set of attributes. Change these attribute values to modify the information | ||
| 6 | // associated with an assembly. | ||
| 7 | // | ||
| 8 | [assembly: AssemblyTitle("")] | ||
| 9 | [assembly: AssemblyDescription("")] | ||
| 10 | [assembly: AssemblyConfiguration("")] | ||
| 11 | [assembly: AssemblyCompany("")] | ||
| 12 | [assembly: AssemblyProduct("")] | ||
| 13 | [assembly: AssemblyCopyright("")] | ||
| 14 | [assembly: AssemblyTrademark("")] | ||
| 15 | [assembly: AssemblyCulture("")] | ||
| 16 | |||
| 17 | // | ||
| 18 | // Version information for an assembly consists of the following four values: | ||
| 19 | // | ||
| 20 | // Major Version | ||
| 21 | // Minor Version | ||
| 22 | // Build Number | ||
| 23 | // Revision | ||
| 24 | // | ||
| 25 | // You can specify all the values or you can default the Revision and Build Numbers | ||
| 26 | // by using the '*' as shown below: | ||
| 27 | |||
| 28 | [assembly: AssemblyVersion("1.0.*")] | ||
| 29 | |||
| 30 | // | ||
| 31 | // In order to sign your assembly you must specify a key to use. Refer to the | ||
| 32 | // Microsoft .NET Framework documentation for more information on assembly signing. | ||
| 33 | // | ||
| 34 | // Use the attributes below to control which key is used for signing. | ||
| 35 | // | ||
| 36 | // Notes: | ||
| 37 | // (*) If no key is specified, the assembly is not signed. | ||
| 38 | // (*) KeyName refers to a key that has been installed in the Crypto Service | ||
| 39 | // Provider (CSP) on your machine. KeyFile refers to a file which contains | ||
| 40 | // a key. | ||
| 41 | // (*) If the KeyFile and the KeyName values are both specified, the | ||
| 42 | // following processing occurs: | ||
| 43 | // (1) If the KeyName can be found in the CSP, that key is used. | ||
| 44 | // (2) If the KeyName does not exist and the KeyFile does exist, the key | ||
| 45 | // in the KeyFile is installed into the CSP and used. | ||
| 46 | // (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility. | ||
| 47 | // When specifying the KeyFile, the location of the KeyFile should be | ||
| 48 | // relative to the project output directory which is | ||
| 49 | // %Project Directory%\obj\<configuration>. For example, if your KeyFile is | ||
| 50 | // located in the project directory, you would specify the AssemblyKeyFile | ||
| 51 | // attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] | ||
| 52 | // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework | ||
| 53 | // documentation for more information on this. | ||
| 54 | // | ||
| 55 | [assembly: AssemblyDelaySign(false)] | ||
| 56 | //[assembly: AssemblyKeyFile("..\\..\\..\\Signing.sn")] | ||
| 57 | [assembly: AssemblyKeyName("")] | ||
