private void InitializeFromModel(VisualBasicProjectFileLoader.VisualBasicProjectFile.VisualBasicCompilerInputs compilerInputs, ProjectInstance executedProject) { compilerInputs.BeginInitialization(); compilerInputs.SetBaseAddress(base.ReadPropertyString(executedProject, "OutputType"), base.ReadPropertyString(executedProject, "BaseAddress")); compilerInputs.SetCodePage(base.ReadPropertyInt(executedProject, "CodePage")); compilerInputs.SetDebugType(base.ReadPropertyBool(executedProject, "DebugSymbols"), base.ReadPropertyString(executedProject, "DebugType")); compilerInputs.SetDefineConstants(base.ReadPropertyString(executedProject, "FinalDefineConstants", "DefineConstants")); compilerInputs.SetFeatures(base.ReadPropertyString(executedProject, "Features")); compilerInputs.SetDelaySign(base.ReadPropertyBool(executedProject, "DelaySign")); compilerInputs.SetDisabledWarnings(base.ReadPropertyString(executedProject, "NoWarn")); compilerInputs.SetDocumentationFile(base.GetItemString(executedProject, "DocFileItem")); compilerInputs.SetErrorReport(base.ReadPropertyString(executedProject, "ErrorReport")); compilerInputs.SetFileAlignment(base.ReadPropertyInt(executedProject, "FileAlignment")); compilerInputs.SetGenerateDocumentation(base.ReadPropertyBool(executedProject, "GenerateDocumentation")); compilerInputs.SetHighEntropyVA(base.ReadPropertyBool(executedProject, "HighEntropyVA")); compilerInputs.SetFeatures(base.ReadPropertyString(executedProject, "Features")); var _imports = this.GetTaskItems(executedProject, "Import"); if (_imports != null) { compilerInputs.SetImports(_imports.ToArray()); } var signAssembly = ReadPropertyBool(executedProject, "SignAssembly"); if (signAssembly) { var keyFile = ReadPropertyString(executedProject, "KeyOriginatorFile", "AssemblyOriginatorKeyFile"); if (!string.IsNullOrEmpty(keyFile)) { compilerInputs.SetKeyFile(keyFile); } var keyContainer = ReadPropertyString(executedProject, "KeyContainerName"); if (!string.IsNullOrEmpty(keyContainer)) { compilerInputs.SetKeyContainer(keyContainer); } } compilerInputs.SetLanguageVersion(base.ReadPropertyString(executedProject, "LangVersion")); compilerInputs.SetMainEntryPoint(base.ReadPropertyString(executedProject, "StartupObject")); compilerInputs.SetModuleAssemblyName(base.ReadPropertyString(executedProject, "ModuleEntryPoint")); compilerInputs.SetNoStandardLib(base.ReadPropertyBool(executedProject, "NoCompilerStandardLib", "NoStdLib")); compilerInputs.SetNoWarnings(base.ReadPropertyBool(executedProject, "_NoWarnings")); compilerInputs.SetOptimize(base.ReadPropertyBool(executedProject, "Optimize")); compilerInputs.SetOptionCompare(base.ReadPropertyString(executedProject, "OptionCompare")); compilerInputs.SetOptionExplicit(base.ReadPropertyBool(executedProject, "OptionExplicit")); compilerInputs.SetOptionInfer(base.ReadPropertyBool(executedProject, "OptionInfer")); compilerInputs.SetOptionStrictType(base.ReadPropertyString(executedProject, "OptionStrict")); compilerInputs.SetOutputAssembly(base.GetItemString(executedProject, "IntermediateAssembly")); if (base.ReadPropertyBool(executedProject, "Prefer32Bit")) { compilerInputs.SetPlatformWith32BitPreference(base.ReadPropertyString(executedProject, "PlatformTarget")); } else { compilerInputs.SetPlatform(base.ReadPropertyString(executedProject, "PlatformTarget")); } compilerInputs.SetRemoveIntegerChecks(base.ReadPropertyBool(executedProject, "RemoveIntegerChecks")); compilerInputs.SetRootNamespace(base.ReadPropertyString(executedProject, "RootNamespace")); compilerInputs.SetSdkPath(base.ReadPropertyString(executedProject, "FrameworkPathOverride")); compilerInputs.SetSubsystemVersion(base.ReadPropertyString(executedProject, "SubsystemVersion")); compilerInputs.SetTargetCompactFramework(base.ReadPropertyBool(executedProject, "TargetCompactFramework")); compilerInputs.SetTargetType(base.ReadPropertyString(executedProject, "OutputType")); // Decode the warning options from RuleSet file prior to reading explicit settings in the project file, so that project file settings prevail for duplicates. compilerInputs.SetRuleSet(base.ReadPropertyString(executedProject, "RuleSet")); compilerInputs.SetTreatWarningsAsErrors(base.ReadPropertyBool(executedProject, "SetTreatWarningsAsErrors")); compilerInputs.SetVBRuntime(base.ReadPropertyString(executedProject, "VbRuntime")); compilerInputs.SetWarningsAsErrors(base.ReadPropertyString(executedProject, "WarningsAsErrors")); compilerInputs.SetWarningsNotAsErrors(base.ReadPropertyString(executedProject, "WarningsNotAsErrors")); compilerInputs.SetReferences(this.GetMetadataReferencesFromModel(executedProject).ToArray <ITaskItem>()); compilerInputs.SetAnalyzers(this.GetAnalyzerReferencesFromModel(executedProject).ToArray <ITaskItem>()); compilerInputs.SetAdditionalFiles(this.GetAdditionalFilesFromModel(executedProject).ToArray <ITaskItem>()); compilerInputs.SetSources(this.GetDocumentsFromModel(executedProject).ToArray <ITaskItem>()); compilerInputs.EndInitialization(); }