public SimpleTestProjectFrameworkContext(
     NuGetFramework framework,
     IEnumerable <SimpleTestPackageContext> packageReferences,
     IEnumerable <SimpleTestProjectContext> projectReferences)
 {
     Framework = framework;
     PackageReferences.AddRange(packageReferences);
     ProjectReferences.AddRange(projectReferences);
 }
示例#2
0
 public SimpleTestProjectFrameworkContext(
     NuGetFramework framework,
     IEnumerable <SimpleTestPackageContext> packageReferences,
     IEnumerable <SimpleTestProjectContext> projectReferences)
 {
     Framework = framework;
     PackageReferences.AddRange(packageReferences);
     ProjectReferences.AddRange(projectReferences);
     TargetAlias = framework.GetShortFolderName();
 }