37 lines
1.9 KiB
C#
37 lines
1.9 KiB
C#
|
using System;
|
|||
|
using System.Reflection;
|
|||
|
using System.Resources;
|
|||
|
using System.Runtime.CompilerServices;
|
|||
|
using System.Runtime.InteropServices;
|
|||
|
|
|||
|
// General Information about an assembly is controlled through the following
|
|||
|
// set of attributes. Change these attribute values to modify the information
|
|||
|
// associated with an assembly.
|
|||
|
[assembly: AssemblyTitle("VSPackageInstall")]
|
|||
|
[assembly: AssemblyDescription("")]
|
|||
|
[assembly: AssemblyConfiguration("")]
|
|||
|
[assembly: AssemblyCompany("Vitalii Ganzha")]
|
|||
|
[assembly: AssemblyProduct("VSPackageInstall")]
|
|||
|
[assembly: AssemblyCopyright("")]
|
|||
|
[assembly: AssemblyTrademark("")]
|
|||
|
[assembly: AssemblyCulture("")]
|
|||
|
[assembly: ComVisible(false)]
|
|||
|
[assembly: CLSCompliant(false)]
|
|||
|
[assembly: NeutralResourcesLanguage("en-US")]
|
|||
|
|
|||
|
// Version information for an assembly consists of the following four values:
|
|||
|
//
|
|||
|
// Major Version
|
|||
|
// Minor Version
|
|||
|
// Build Number
|
|||
|
// Revision
|
|||
|
//
|
|||
|
// You can specify all the values or you can default the Revision and Build Numbers
|
|||
|
// by using the '*' as shown below:
|
|||
|
|
|||
|
[assembly: AssemblyVersion("1.0.0.0")]
|
|||
|
[assembly: AssemblyFileVersion("1.0.0.0")]
|
|||
|
|
|||
|
[assembly: InternalsVisibleTo("VSPackageInstall_IntegrationTests, PublicKey=00240000048000009400000006020000002400005253413100040000010001004bcbc34c62abe4c7cbb70dd208ebb4958e5f0fa40d49b5cb7745114737e7deba8e9227e32bb0c06fba88912c428184c837e96865ef4f98d7302d5f9f184a93906e2fdd69f9defe190ad7605078c48a780222cd33b3655512d71febdf8bfcf755ccb9037b9369939cd85bcc0b1ef12938bd1b6802f9284e657dd7d386555209b5")]
|
|||
|
[assembly: InternalsVisibleTo("VSPackageInstall_UnitTests, PublicKey=00240000048000009400000006020000002400005253413100040000010001004bcbc34c62abe4c7cbb70dd208ebb4958e5f0fa40d49b5cb7745114737e7deba8e9227e32bb0c06fba88912c428184c837e96865ef4f98d7302d5f9f184a93906e2fdd69f9defe190ad7605078c48a780222cd33b3655512d71febdf8bfcf755ccb9037b9369939cd85bcc0b1ef12938bd1b6802f9284e657dd7d386555209b5")]
|