diff --git a/build/tools/MasterEditorTWL/MasterEditorTWL.ncb b/build/tools/MasterEditorTWL/MasterEditorTWL.ncb index 7ea024dd..f1347d07 100644 Binary files a/build/tools/MasterEditorTWL/MasterEditorTWL.ncb and b/build/tools/MasterEditorTWL/MasterEditorTWL.ncb differ diff --git a/build/tools/MasterEditorTWL/MasterEditorTWL.suo b/build/tools/MasterEditorTWL/MasterEditorTWL.suo index 7786ceac..30073f64 100644 Binary files a/build/tools/MasterEditorTWL/MasterEditorTWL.suo and b/build/tools/MasterEditorTWL/MasterEditorTWL.suo differ diff --git a/build/tools/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm b/build/tools/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm index 6441522d..67350529 100644 Binary files a/build/tools/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm and b/build/tools/MasterEditorTWL/MasterEditorTWL/Debug/BuildLog.htm differ diff --git a/build/tools/MasterEditorTWL/MasterEditorTWL/deliverable.cpp b/build/tools/MasterEditorTWL/MasterEditorTWL/deliverable.cpp index a1d19b75..c8b9fa83 100644 --- a/build/tools/MasterEditorTWL/MasterEditorTWL/deliverable.cpp +++ b/build/tools/MasterEditorTWL/MasterEditorTWL/deliverable.cpp @@ -107,6 +107,16 @@ ECDeliverableResult RCDeliverable::writeSpreadsheet( access += "commonClientKey(Debug). "; } + // 使用ライセンス + System::String ^lib = gcnew System::String(""); + if( hSrl->hLicenseList != nullptr ) + { + for each( RCLicense ^lic in hSrl->hLicenseList ) + { + lib += lic->Publisher + " " + lic->Name + ". "; + } + } + // 書類テンプレートの各タグを入力情報に置き換え System::Xml::XmlNodeList ^list; list = root->GetElementsByTagName( "Data" ); @@ -224,6 +234,10 @@ ECDeliverableResult RCDeliverable::writeSpreadsheet( { node->FirstChild->Value = this->hSDK; } + if( node->FirstChild->Value->Equals( "TagLibrary" ) ) + { + node->FirstChild->Value = lib; + } // ROM情報 (TWL拡張情報) if( node->FirstChild->Value->Equals( "TagEULAVersion" ) ) {