17 lines
630 B
C++
17 lines
630 B
C++
//
|
|
// Copyright (c) 2006 Microsoft Corporation. All rights reserved.
|
|
//
|
|
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
|
|
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
|
|
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
|
|
// PARTICULAR PURPOSE.
|
|
//
|
|
|
|
using namespace System;
|
|
using namespace System::Reflection;
|
|
using namespace System::Security::Permissions;
|
|
|
|
[assembly: AssemblyTitle("Runspace03")];
|
|
[assembly: AssemblyDescription("Runspace Sample - Input Object and Errors")];
|
|
[assembly: SecurityPermission(SecurityAction::RequestMinimum)];
|
|
[assembly: CLSCompliant(true)]; |