「パッケージのビルド」の版間の差分

37行目: 37行目:
       return;
       return;
   }
   }
   
  //パッケージマニフェストファイルの簡易チェック
  if(Package_GetManifest(File_get_text(manifestPath)) == null)
  if(Package_GetManifest(File_get_text(manifestPath)) == null)
   {
   {
48行目: 48行目:
   
   
  print(“圧縮: {0} -> {1}”,SourcePath,tempPath);
  print(“圧縮: {0} -> {1}”,SourcePath,tempPath);
//ソースディレクトリをZip形式で圧縮
  Zip_CreateFromDirectory(SourcePath,tempPath);
  Zip_CreateFromDirectory(SourcePath,tempPath);
   
   
  print(“変換: {0} -> {1}”,tempPath,TargetPath);
  print(“変換: {0} -> {1}”,tempPath,TargetPath);
//圧縮したZipファイルからAlicePackageファイルを生成
  Package_CreateFromZipFile(tempPath,TargetPath);
  Package_CreateFromZipFile(tempPath,TargetPath);
   
   
  print(“パッケージのビルドが完了しました”);
  print(“パッケージのビルドが完了しました”);