RebuildxPT4TaskMakers.pas

This commit is contained in:
Mikhalkovich Stanislav 2023-07-29 10:08:33 +03:00
parent 9cd9533aa5
commit ef338cb879
12 changed files with 37 additions and 8 deletions

View file

@ -15,7 +15,7 @@ internal static class RevisionClass
public const string Major = "3";
public const string Minor = "9";
public const string Build = "0";
public const string Revision = "3316";
public const string Revision = "3317";
public const string MainVersion = Major + "." + Minor;
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;

View file

@ -1,4 +1,4 @@
%COREVERSION%=0
%REVISION%=3316
%MINOR%=9
%REVISION%=3317
%COREVERSION%=0
%MAJOR%=3

View file

@ -1 +1 @@
3.9.0.3316
3.9.0.3317

View file

@ -1 +1 @@
!define VERSION '3.9.0.3316'
!define VERSION '3.9.0.3317'

View file

@ -1,4 +1,5 @@
uses

uses
PABCSystem, PABCExtensions, __RedirectIOMode, __RunMode, ABCButtons, ABCHouse, ABCObjects,
ABCSprites, CRT, DMCollect, DMTaskMaker, DMZadan, Drawman,
DrawManField, Events, FilesOperations,
@ -10,7 +11,7 @@
WPFObjects,
NumLibABC,
IniFile, PointerTools, PointRect,
PT4, PT4Exam, xPT4MakerNetX, xPT4TaskMakerNET,
PT4, PT4Exam, PT4MakerNetX, PT4TaskMakerNET,
Robot, RobotField,
RobotTaskMaker, RobotZadan, Sockets, Utils, VCL, Timers, RBDMUtils,
Collections, Arrays, Core, FormsABC, MPI, ClientServer, Speech, Sounds, Countries,

View file

@ -0,0 +1,5 @@
uses xPT4MakerNetX, xPT4TaskMakerNET;
begin
writeln(cos(pi));
end.

View file

@ -23,6 +23,8 @@ call Studio.bat /t:rebuild "/property:Configuration=Release" PascalABCNET.sln
cd ReleaseGenerators
..\bin\pabcnetc RebuildStandartModules.pas /rebuild
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR
..\bin\pabcnetc RebuildxPT4TaskMakers.pas /rebuild
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR
cd PABCRtl
..\..\bin\pabcnetc PABCRtl.pas /rebuild
@ -38,6 +40,9 @@ ExecHide.exe gacutil.exe /i ..\bin\Lib\PABCRtl.dll
..\bin\pabcnetc RebuildStandartModules.pas /rebuild
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR
..\bin\pabcnetc RebuildxPT4TaskMakers.pas /rebuild
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR
cd ..\bin
TestRunner.exe 1

View file

@ -20,6 +20,9 @@ ExecHide.exe gacutil.exe /i ..\bin\Lib\PABCRtl.dll
..\bin\pabcnetc RebuildStandartModules.pas /rebuild
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR
..\bin\pabcnetc RebuildxPT4TaskMakers.pas /rebuild
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR
cd ..\bin
REM MPGORunner.exe

View file

@ -5,6 +5,9 @@ call Studio.bat /t:rebuild "/property:Configuration=Release" "/p:Platform=Any CP
cd ReleaseGenerators
..\bin\pabcnetc RebuildStandartModules.pas /rebuild
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR
..\bin\pabcnetc RebuildxPT4TaskMakers.pas /rebuild
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR
cd PABCRtl
..\..\bin\pabcnetc PABCRtl.pas /rebuild
@ -20,6 +23,9 @@ ExecHide.exe gacutil.exe /i ..\bin\Lib\PABCRtl.dll
..\bin\pabcnetc RebuildStandartModules.pas /rebuild
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR
..\bin\pabcnetc RebuildxPT4TaskMakers.pas /rebuild
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR
cd ..\bin
REM MPGORunner.exe

View file

@ -5,6 +5,9 @@ call Studio.bat /t:rebuild "/property:Configuration=Release" "/p:Platform=Any CP
cd ReleaseGenerators
..\bin\pabcnetc RebuildStandartModules.pas /rebuild /noconsole
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR
..\bin\pabcnetc RebuildxPT4TaskMakers.pas /rebuild /noconsole
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR
cd PABCRtl
..\..\bin\pabcnetc PABCRtl.pas /rebuild /noconsole
@ -20,6 +23,9 @@ ExecHide.exe gacutil.exe /i ..\bin\Lib\PABCRtl.dll
..\bin\pabcnetc RebuildStandartModules.pas /rebuild /noconsole
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR
..\bin\pabcnetc RebuildxPT4TaskMakers.pas /rebuild /noconsole
@IF %ERRORLEVEL% NEQ 0 GOTO ERROR
cd ..\bin
REM MPGORunner.exe

View file

@ -1,4 +1,5 @@

{$reference System.Windows.Forms.dll}
/// Конструктор учебных заданий для задачника Programming Taskbook.
/// Версия 1.9 от 26.03.2023 (С) М. Э. Абрамян, 2016-2023.
/// Все компоненты конструктора могут вызываться либо как классовые методы класса pt,

View file

@ -1,3 +1,5 @@
{$reference System.Windows.Forms.dll}
/// Конструктор для электронного задачника Programming Taskbook 4.23
unit xPT4TaskMakerNET;