コード例 #1
0
ファイル: PlatformImpl.cs プロジェクト: geofrey/crayon
        public override Dictionary <string, string> GenerateReplacementDictionary(Options options, ResourceDatabase resDb)
        {
            Dictionary <string, string> replacements = AbstractPlatform.GenerateGeneralReplacementsDictionary(options);

            replacements["PROJECT_GUID"] = "project guid goes here.";
            return(replacements);
        }
コード例 #2
0
 public override Dictionary <string, string> GenerateReplacementDictionary(Options options, ResourceDatabase resDb)
 {
     return(AbstractPlatform.GenerateGeneralReplacementsDictionary(options));
 }
コード例 #3
0
 public override Dictionary <string, string> GenerateReplacementDictionary(
     ExportProperties exportProperties,
     BuildData buildData)
 {
     return(AbstractPlatform.GenerateGeneralReplacementsDictionary(exportProperties));
 }