12345678910111213141516171819202122232425262728293031323334 |
- @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 ..\..\cognosdotnet_10_2.dll .
- copy ..\..\cognosdotnetassembly_10_2.dll .
- set ICON=/win32icon:..\SamplesCommon\SamplesApplication.ico
- set SOURCE=CreateReport.cs CreateReportDlg.cs CreateReportTableDlg.cs PackageNameDlg.cs ReportNameDlg.cs XmlNodeWrapper.cs
- set RESOURCES=CreateReportDlg.resx CreateReportTableDlg.resx ReportNameDlg.resx PackageNameDlg.resx
- set COMPILED_RESOURCES=/res:CreateReportDlg.resources,CreateReport.CreateReportDlg.resources /res:CreateReportTableDlg.resources,CreateReport.CreateReportTableDlg.resources /res:ReportNameDlg.resources,CreateReport.ReportNameDlg.resources /res:PackageNameDlg.resources,CreateReport.PackageNameDlg.resources
- set COGDLLS=/r:cognosdotnet_10_2.dll /r:cognosdotnetassembly_10_2.dll
- resgen /compile CreateReportDlg.resx CreateReportTableDlg.resx ReportNameDlg.resx PackageNameDlg.resx
- csc /nologo %COGDLLS% /r:SamplesCommon.dll %SOURCE% %ICON% %COMPILED_RESOURCES%
- del *.resources
- echo Done.
|