12345678910111213141516171819202122232425262728293031323334 |
- @echo off
- 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=PropertiesDlg.cs ContentStoreExplorerDlg.cs
- set RESOURCES=ContentStoreExplorerDlg.resx PropertiesDlg.resx
- set COMPILED_RESOURCES=/res:PropertiesDlg.resources,ContentStoreExplorer.PropertiesDlg.resources /res:ContentStoreExplorerDlg.resources,ContentStoreExplorer.ContentStoreExplorerDlg.resources
- set COGDLLS=/r:cognosdotnet_10_2.dll /r:cognosdotnetassembly_10_2.dll
- resgen /compile %RESOURCES%
- csc /nologo %COGDLLS% /r:SamplesCommon.dll %SOURCE% %ICON% %COMPILED_RESOURCES%
- del *.resources
- echo Done.
|