123456789101112131415161718192021222324252627282930313233343536 |
- @echo off
- rem Licensed Materials - Property of IBM
- rem IBM Cognos Products: DOCS
- rem (C) Copyright IBM Corp. 2005, 2012
- rem US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with
- rem IBM Corp.
- rem Copyright (C) 2007 Cognos ULC, an IBM Company. All rights reserved.
- rem Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
- echo If you didn't run build.bat in ..\SamplesCommon, press Ctrl-C and do it now.
- echo.
- pause
- copy ..\SamplesCommon\SamplesCommon.dll .
- copy ..\bin\AxInterop.SHDocVw.dll .
- copy ..\bin\Interop.SHDocVw.dll .
- copy ..\..\cognosdotnet_10_2.dll .
- copy ..\..\cognosdotnetassembly_10_2.dll .
- set ICON=/win32icon:..\SamplesCommon\SamplesApplication.ico
- set SOURCE=ExecuteReport.cs ExecuteReportDlg.cs
- set RESOURCES=ExecuteReportDlg.resx
- set COMPILED_RESOURCES=/res:ExecuteReportDlg.resources,ExecuteReport.ExecuteReportDlg.resources
- set COGDLLS=/r:cognosdotnet_10_2.dll /r:cognosdotnetassembly_10_2.dll
- resgen /compile ExecuteReportDlg.resx
- csc /nologo %COGDLLS% /r:..\bin\AxInterop.SHDocVw.dll /r:SamplesCommon.dll %SOURCE% %ICON% %COMPILED_RESOURCES%
- del *.resources
- echo Done.
|