protected virtual IValidationManifest GetManifest()
        {
            var builder = ManifestBuilder.Create <TValidated>();

            ConfigureManifest(builder);

            return(builder.GetManifest());
        }
Exemple #2
0
        public ModuleManifest GenerateManifest(string assemblyFilePath, string folderPath)
        {
            // build manifest with this settings
            KeysGeneratorProgram.Main(new[] { IssuerPath });

            var manifestBuilder = new ManifestBuilder(IssuerName, IssuerPath,
                                                      assemblyFilePath,
                                                      folderPath, KeyStorage.Nomad,
                                                      string.Empty, Configuration);

            return manifestBuilder.Create();
        }
Exemple #3
0
        public ModuleManifest GenerateManifest(string assemblyFilePath, string folderPath)
        {
            // build manifest with this settings
            KeysGeneratorProgram.Main(new[] { IssuerPath });

            var manifestBuilder = new ManifestBuilder(IssuerName, IssuerPath,
                                                      assemblyFilePath,
                                                      folderPath, KeyStorage.Nomad,
                                                      string.Empty, Configuration);

            return(manifestBuilder.Create());
        }