/***************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
This code is licensed under the Visual Studio SDK license terms.
THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
***************************************************************************/
//*************************************************************************************************
// MyTestResourceIds.cs
//
// This file defines the resource ids used in the satellite DLL.
//
// Copyright(c) Microsoft Corporation, 2004
//*************************************************************************************************
namespace Microsoft.VisualStudio.TestTools.Samples
{
/// <summary>
/// MyTest resource ids. These are exactly the same values that
/// are in the satellite DLL's resource.h.
/// </summary>
internal enum ResourceIds: int
{
MyTestName = 101,
MyTestDescription = 102,
MyTestBaseName = 103,
MyTestIcon = 104,
MyTestEditorCaption = 105,
MyTestNewItemLocation = 106,
MyTestNewItemBaseName = 107,
MyTestPackageLoadKey = 500
}
}