Compare commits

..

No commits in common. "27df9766f70f4d2cecf045c86dd2a7845b0f9c35" and "e346bde9902dc1e87dfb6b4a1841c2ad66c95e41" have entirely different histories.

2 changed files with 33 additions and 4 deletions

4
.gitignore vendored
View File

@ -38,7 +38,3 @@
/SGGL/FineUIPro.Web/FileUpload/TestRun/TestRunMonthSummary/2024-06 /SGGL/FineUIPro.Web/FileUpload/TestRun/TestRunMonthSummary/2024-06
/SGGL/FineUIPro.Web/FileUpload/ProjectAttachUrl/2024-06 /SGGL/FineUIPro.Web/FileUpload/ProjectAttachUrl/2024-06
/SGGLPackFile_20240730.rar /SGGLPackFile_20240730.rar
/SGGL/FineUIPro.Web/FileUpload/Transfer/PunchlistFrom/2024-10
/SGGL/FineUIPro.Web/ErrLog.txt
/SGGL/FineUIPro.Web/Web.config
/CreateModel2017.bat

33
CreateModel2017.bat Normal file
View File

@ -0,0 +1,33 @@
@echo off
REM ---------------
REM 发布包生成工具
REM 执行此文件前请先用Release生成WebOA项目
REM --------------
REM --------------
REM 环境变量设置 Project_Src为如WebOA这样的分支
REM --------------
set PROJECT_SRC=%CD%
cd..
REM 源代码Model项目文件夹
set Model_ROOT=%PROJECT_SRC%\SGGL\Model
REM --------------
REM 发布程序包文件夹相关
REM --------------
@echo 设置.net控制台环境
@echo.
@call "%VS150%"
SqlMetal /views /server:. /user:sa /password:1111 /database:SGGLDB_WH /code:%Model_ROOT%\Model.cs /namespace:Model
@ECHO 完成
pause