├── .gitignore ├── .gitmodules ├── Build ├── Build.proj ├── Build.tasks ├── NuGet.Settings.targets ├── NuGet.Test.targets └── ilmerge.internalize.ignore.txt ├── COPYRIGHT.txt ├── CREDITS.txt ├── CodeAnalysisDictionary.xml ├── Common ├── CommonAssemblyInfo.cs ├── CommonResources.Designer.cs ├── CommonResources.cs ├── CommonResources.resx ├── GlobalSuppressions.cs ├── MsBuildProjectUtility.cs └── NuGetConstants.cs ├── FxCop └── Microsoft.PowerShell.CodeAnalysis.dll ├── LICENSE.txt ├── NuGet.ruleset ├── NuGet.sln ├── README.md ├── Tools ├── 7za920 │ ├── 7-zip.chm │ ├── 7za.exe │ ├── license.txt │ └── readme.txt ├── ILMerge │ ├── ILMerge License.rtf │ ├── ILMerge.doc │ ├── ILMerge.exe │ └── ILMerge.msi ├── NuGet │ ├── GenerateTestPackages │ │ ├── AssemblySourceFileGenerator.cs │ │ ├── AssemblySourceFileGenerator.tt │ │ ├── AssemblySourceFileGenerator_Partial.cs │ │ ├── GenerateTestPackages.csproj │ │ ├── GenerateTestPackages.sln │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Test.dgml │ │ ├── TestPackageKey.snk │ │ └── app.config │ ├── Microsoft.VisualStudio.Project.V11Only │ │ ├── ConfiguredProject.cs │ │ ├── IDirectAccess.cs │ │ ├── IDirectAccessService.cs │ │ ├── IDirectWriteAccess.cs │ │ ├── IProjectServices.cs │ │ ├── IUnconfiguredProjectServices.cs │ │ ├── IVsBrowseObjectContext.cs │ │ ├── Microsoft.VisualStudio.Project.V11Only.csproj │ │ ├── Microsoft.VisualStudio.Project.V11Only.sln │ │ ├── ProjectAccess.cs │ │ ├── ProjectService.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── UnconfiguredProject.cs │ │ └── key.snk │ ├── VisualStudioExtensions │ │ ├── ExtensionsExplorer.UI │ │ │ ├── AssemblyInfo.cs │ │ │ ├── ExtensionsExplorer.UI.csproj │ │ │ ├── ProviderExpander.cs │ │ │ ├── SortCombo.cs │ │ │ ├── VSExtensionsExplorerCtl.cs │ │ │ ├── VsExtensionsProvider.cs │ │ │ └── mskey.snk │ │ ├── ExtensionsExplorer.UI11 │ │ │ ├── ExtensionsExplorer.UI11.csproj │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── mskey.snk │ │ ├── ExtensionsExplorer │ │ │ ├── CancelProgressCallback.cs │ │ │ ├── ExtensionsExplorer.csproj │ │ │ ├── IPropertySink.cs │ │ │ ├── IVsExtension.cs │ │ │ ├── IVsExtensionsProvider.cs │ │ │ ├── IVsExtensionsProviderSelectionCallback.cs │ │ │ ├── IVsExtensionsTreeNode.cs │ │ │ ├── IVsMessagePane.cs │ │ │ ├── IVsMessagePaneConsumer.cs │ │ │ ├── IVsNoItemsMessageTreeNode.cs │ │ │ ├── IVsPageDataSource.cs │ │ │ ├── IVsProgressPane.cs │ │ │ ├── IVsProgressPaneConsumer.cs │ │ │ ├── IVsSearchScope.cs │ │ │ ├── IVsSortDataSource.cs │ │ │ ├── IVsSortDescriptor.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── ViewStyle.cs │ │ │ └── mskey.snk │ │ ├── ExtensionsExplorer11 │ │ │ ├── ExtensionsExplorer11.csproj │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── mskey.snk │ │ └── VisualStudioExtensions.sln │ └── readme.txt └── XUnit │ ├── xunit.runner.msbuild.dll │ └── xunit.runner.utility.dll ├── WebMatrixExtension ├── NuGetExtension.Tests │ ├── CoreTests │ │ ├── FilterManagerTest.cs │ │ └── WebProjectManagerTest.cs │ ├── Mocks │ │ ├── IPackageManagerMock.cs │ │ ├── IPackageMock.cs │ │ ├── IWebMatrixHostMock.cs │ │ ├── MockPackageRepository.cs │ │ └── MockServiceBasePackageRepository.cs │ ├── ModelTests │ │ ├── NuGetModelTests.cs │ │ └── PackageSourcesModelTest.cs │ ├── NuGetExtension.Tests.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Utilities │ │ ├── InMemoryFeedSourceStore.cs │ │ ├── InMemoryPackageManager.cs │ │ ├── PackageFactory.cs │ │ ├── PackageStub.cs │ │ └── TemporaryDispatcherThread.cs │ ├── ViewModelTests │ │ ├── ButtonBarViewModelTests.cs │ │ ├── EndToEndTests.cs │ │ ├── NuGetViewModelTests.cs │ │ ├── RequirementViewModelTest.cs │ │ └── featured.xml │ ├── app.config │ └── packages.config ├── NuGetExtension.sln └── NuGetExtension │ ├── Commands │ ├── NuGetCommandTarget.cs │ └── NuGetCommands.cs │ ├── Converters │ ├── ColorToBrushConverter.cs │ └── FixUrlConverter.cs │ ├── Core │ ├── FeedSource.cs │ ├── FeedSourceStore.cs │ ├── FilterManager.cs │ ├── IFeedSourceStore.cs │ ├── IPackageManager.cs │ ├── IStringSequenceStore.cs │ ├── NativeMethods.cs │ ├── StringSequenceFeedSourceStore.cs │ └── StringSequenceStore.cs │ ├── Data │ ├── IListViewFilter.cs │ ├── ListViewFilter.cs │ ├── VirtualizingList.cs │ ├── VirtualizingListEntry.cs │ ├── VirtualizingListPlaceholder.cs │ └── VirtualizingListViewFilter.cs │ ├── GalleryDescriptors.cs │ ├── Helpers │ └── Extensions.cs │ ├── IdleDelayTimer.cs │ ├── ListViewWithPointer.cs │ ├── ModuleGlobals.cs │ ├── NuGet │ ├── NuGetFeedSourceStore.cs │ ├── NuGetPackageManager.cs │ ├── RemoteAssembly.cs │ ├── WebPagesDeployment.cs │ ├── WebProjectManager.cs │ └── WebProjectSystem.cs │ ├── NuGetExtension.cs │ ├── NuGetExtension.csproj │ ├── NuGetGallery.cs │ ├── NuGetPackageManager.nuspec │ ├── NuGetRibbonProvider.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Requirements │ ├── Requirement.cs │ ├── Requirements.cs │ └── SystemInformation.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Resources │ ├── ClearSearch.png │ ├── MagGlass.png │ ├── backarrow.png │ ├── nuget_16.png │ ├── nuget_32.png │ ├── nuget_48.png │ └── nuget_96.png │ ├── WPF │ ├── Model │ │ ├── NuGetModel.cs │ │ └── PackageSourcesModel.cs │ ├── View │ │ ├── FileConflictDialog.xaml │ │ ├── FileConflictDialog.xaml.cs │ │ ├── NuGetButtonBar.xaml │ │ ├── NuGetButtonBar.xaml.cs │ │ ├── NuGetView.xaml │ │ ├── NuGetView.xaml.cs │ │ ├── SearchPageHeader.xaml │ │ ├── SearchPageHeader.xaml.cs │ │ ├── SourceManagerView.xaml │ │ └── SourceManagerView.xaml.cs │ └── ViewModel │ │ ├── ButtonBarViewModel.cs │ │ ├── ButtonViewModel.cs │ │ ├── NuGetViewModel.cs │ │ ├── PackageSourcesViewModel.cs │ │ ├── PackageViewModel.cs │ │ ├── PackageViewModelAction.cs │ │ ├── RequirementViewModel.cs │ │ └── RequirementsViewModel.cs │ └── packages.config ├── acknowledgements.md ├── build.cmd ├── build.sh ├── changelog.md ├── lib ├── Microsoft.VisualStudio.ProjectSystem.Interop.dll ├── Microsoft.VisualStudio.Shell.Interop.11.0.dll ├── Microsoft.VisualStudio.VCProjectEngine.dll ├── Microsoft.Web.XmlTransform.dll ├── Microsoft.WebMatrix.Core.dll ├── Microsoft.WebMatrix.Extensibility.dll ├── NuGet.exe ├── VS10 │ ├── Microsoft.TeamFoundation.Client.dll │ ├── Microsoft.TeamFoundation.Common.dll │ ├── Microsoft.TeamFoundation.VersionControl.Client.dll │ ├── Microsoft.VisualStudio.ExtensionManager.dll │ ├── Microsoft.VisualStudio.ExtensionsExplorer.UI.dll │ ├── Microsoft.VisualStudio.ExtensionsExplorer.dll │ ├── Microsoft.VisualStudio.Shell.10.0.dll │ └── Microsoft.VisualStudio.VCProjectEngine.dll ├── VS11 │ ├── Microsoft.TeamFoundation.Client.dll │ ├── Microsoft.TeamFoundation.Common.dll │ ├── Microsoft.TeamFoundation.VersionControl.Client.dll │ ├── Microsoft.VisualStudio.ExtensionsExplorer.UI.dll │ ├── Microsoft.VisualStudio.ExtensionsExplorer.dll │ └── Microsoft.VisualStudio.Project.V11Only.dll ├── VS12 │ ├── Microsoft.TeamFoundation.Client.dll │ ├── Microsoft.TeamFoundation.Common.dll │ ├── Microsoft.TeamFoundation.VersionControl.Client.dll │ ├── Microsoft.VisualStudio.ExtensionsExplorer.UI.dll │ ├── Microsoft.VisualStudio.ExtensionsExplorer.dll │ ├── Microsoft.VisualStudio.ProjectSystem.V12Only.dll │ ├── Microsoft.VisualStudio.Services.Common.dll │ ├── Microsoft.VisualStudio.Shell.12.0.dll │ └── Microsoft.VisualStudio.Threading.dll └── VS14 │ ├── Microsoft.TeamFoundation.Client.dll │ ├── Microsoft.TeamFoundation.Common.dll │ ├── Microsoft.TeamFoundation.VersionControl.Client.dll │ ├── Microsoft.VisualStudio.ExtensionsExplorer.UI.dll │ ├── Microsoft.VisualStudio.ExtensionsExplorer.dll │ ├── Microsoft.VisualStudio.ProjectSystem.V14Only.dll │ ├── Microsoft.VisualStudio.Services.Common.dll │ ├── Microsoft.VisualStudio.Shell.14.0.dll │ └── Microsoft.VisualStudio.Threading.dll ├── src ├── Build │ ├── NuGet.Build.nuspec │ └── NuGet.targets ├── CommandLine.ServerExtensions │ ├── CommandLine.ServerExtensions.csproj │ ├── MirrorCommand.cs │ ├── NuGetResources.Designer.cs │ ├── NuGetResources.resx │ ├── PackageMirrorer.cs │ ├── PackageServerRepository.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── GlobalSuppressions.cs ├── CommandLine │ ├── Attributes │ │ ├── CommandAttribute.cs │ │ └── OptionAttribute.cs │ ├── CommandLine.csproj │ ├── CommandLineMachineWideSettings.cs │ ├── CommandLineParser.cs │ ├── CommandManager.cs │ ├── Commands │ │ ├── Command.cs │ │ ├── ConfigCommand.cs │ │ ├── DeleteCommand.cs │ │ ├── DownloadCommandBase.cs │ │ ├── HelpCommand.cs │ │ ├── HelpCommandMarkdownTemplate.cs │ │ ├── HelpCommandMarkdownTemplate.cshtml │ │ ├── ICommand.cs │ │ ├── InstallCommand.cs │ │ ├── ListCommand.cs │ │ ├── PackCommand.cs │ │ ├── ProjectFactory.cs │ │ ├── PushCommand.cs │ │ ├── RestoreCommand.cs │ │ ├── SetApiKeyCommand.cs │ │ ├── SourcesCommand.cs │ │ ├── SpecCommand.cs │ │ └── UpdateCommand.cs │ ├── Common │ │ ├── AggregateRepositoryHelper.cs │ │ ├── CachedPackageSourceProvider.cs │ │ ├── CommandLineConstants.cs │ │ ├── CommandLineException.cs │ │ ├── CommandLineRepositoryFactory.cs │ │ ├── CommandLineUtility.cs │ │ ├── Console.cs │ │ ├── ConsoleCredentialProvider.cs │ │ ├── IConsole.cs │ │ ├── IMSBuildProjectSystem.cs │ │ ├── LocalizedResourceManager.cs │ │ ├── MSBuildProjectSystem.cs │ │ ├── MSBuildSolutionParser.cs │ │ ├── PackageExtractor.cs │ │ ├── PackageSourceProviderExtensions.cs │ │ ├── ProjectHelper.cs │ │ ├── ProjectInSolution.cs │ │ ├── ReadOnlyPackageRepository.cs │ │ ├── ResourceHelper.cs │ │ ├── SelfUpdater.cs │ │ ├── Solution.cs │ │ ├── TypeHelper.cs │ │ ├── Verbosity.cs │ │ └── XBuildSolutionParser.cs │ ├── DebugHelper.cs │ ├── DefaultManifestValuesRule.cs │ ├── DefaultPackageRules.cs │ ├── FileConflictAction.cs │ ├── ICommandManager.cs │ ├── ISolutionParser.cs │ ├── NuGetCommand.cs │ ├── NuGetCommand.resx │ ├── NuGetResources.Designer.cs │ ├── NuGetResources.resx │ ├── PackageSourceBuilder.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── GlobalSuppressions.cs │ │ └── NuGet.CommandLine.nuspec │ └── StrictSemanticVersionValidationRule.cs ├── Core │ ├── Analysis │ │ ├── DefaultPackageRuleSet.cs │ │ ├── IPackageRule.cs │ │ ├── PackageIssue.cs │ │ ├── PackageIssueLevel.cs │ │ └── Rules │ │ │ ├── InitScriptNotUnderToolsRule.cs │ │ │ ├── InvalidFrameworkFolderRule.cs │ │ │ ├── MisplacedAssemblyRule.cs │ │ │ ├── MisplacedScriptFileRule.cs │ │ │ ├── MisplacedTransformFileRule.cs │ │ │ ├── MissingSummaryRule.cs │ │ │ └── WinRTNameIsObsoleteRule.cs │ ├── Authoring │ │ ├── AssemblyMetadata.cs │ │ ├── AssemblyMetadataExtractor.cs │ │ ├── EmptyFrameworkFolderFile.cs │ │ ├── IPackageBuilder.cs │ │ ├── IPropertyProvider.cs │ │ ├── Manifest.cs │ │ ├── ManifestContentFiles.cs │ │ ├── ManifestDependency.cs │ │ ├── ManifestDependencySet.cs │ │ ├── ManifestFile.cs │ │ ├── ManifestFrameworkAssembly.cs │ │ ├── ManifestMetadata.cs │ │ ├── ManifestReader.cs │ │ ├── ManifestReference.cs │ │ ├── ManifestReferenceSet.cs │ │ ├── ManifestSchemaUtility.cs │ │ ├── ManifestVersionAttribute.cs │ │ ├── ManifestVersionUtility.cs │ │ ├── NullPropertyProvider.cs │ │ ├── PackageBuilder.cs │ │ ├── PackageDependencySet.cs │ │ ├── PackageReferenceSet.cs │ │ ├── PathResolver.cs │ │ ├── PhysicalPackageAssemblyReference.cs │ │ ├── PhysicalPackageFile.cs │ │ └── nuspec.xsd │ ├── Configuration │ │ ├── ConfigurationDefaults.cs │ │ ├── ISettings.cs │ │ ├── NullSettings.cs │ │ ├── SettingValue.cs │ │ ├── Settings.cs │ │ ├── SettingsCredentialProvider.cs │ │ └── UserSettings.cs │ ├── ConstraintProviders │ │ ├── AggregateConstraintProvider.cs │ │ ├── DefaultConstraintProvider.cs │ │ └── IPackageConstraintProvider.cs │ ├── Core.csproj │ ├── EnvironmentVariableWrapper.cs │ ├── Extensions │ │ ├── AppDomainExtensions.cs │ │ ├── AssemblyExtensions.cs │ │ ├── AssemblyNameExtensions.cs │ │ ├── CollectionExtensions.cs │ │ ├── CredentialProviderExtensions.cs │ │ ├── EnumerableExtensions.cs │ │ ├── FileSystemExtensions.cs │ │ ├── ObjectExtensions.cs │ │ ├── PackageExtensions.cs │ │ ├── PackageOperationExtensions.cs │ │ ├── ProjectSystemExtensions.cs │ │ ├── QueryableExtensions.cs │ │ ├── SettingsExtensions.cs │ │ ├── StreamExtensions.cs │ │ ├── StringExtensions.cs │ │ ├── TaskExtensions.cs │ │ ├── VersionExtensions.cs │ │ └── XElementExtensions.cs │ ├── FileModifiers │ │ ├── FileTransformExtensions.cs │ │ ├── IPackageFileTransformer.cs │ │ ├── Preprocessor.cs │ │ ├── XdtTransformer.cs │ │ └── XmlTransfomer.cs │ ├── GlobalSuppressions.cs │ ├── Http │ │ ├── CredentialStore.cs │ │ ├── CredentialType.cs │ │ ├── HttpClient.cs │ │ ├── HttpUtility.cs │ │ ├── ICredentialCache.cs │ │ ├── ICredentialProvider.cs │ │ ├── IHttpClient.cs │ │ ├── IHttpClientEvents.cs │ │ ├── IHttpWebResponse.cs │ │ ├── IProxyCache.cs │ │ ├── MultipartWebRequest.cs │ │ ├── NullCredentialProvider.cs │ │ ├── ProxyCache.cs │ │ ├── RedirectedHttpClient.cs │ │ ├── RepositoryOperationNames.cs │ │ ├── RequestHelper.cs │ │ ├── STSAuthHelper.cs │ │ ├── SendingRequestEventManager.cs │ │ └── WIFTypeProvider.cs │ ├── IEnvironmentVariableReader.cs │ ├── IMachineWideSettings.cs │ ├── IPackageManager.cs │ ├── IProjectManager.cs │ ├── Logging │ │ ├── FileConflictResolution.cs │ │ ├── IFileConflictResolver.cs │ │ ├── ILogger.cs │ │ ├── MessageLevel.cs │ │ └── NullLogger.cs │ ├── NETPortable │ │ ├── NetPortableProfile.cs │ │ ├── NetPortableProfileCollection.cs │ │ ├── NetPortableProfileTable.cs │ │ ├── ReferenceAssemblyCompatibilityProvider.cs │ │ ├── ReferenceAssemblyFrameworkNameProvider.cs │ │ └── ReferenceAssemblyPortableFrameworkMappings.cs │ ├── NuGet.Frameworks │ │ ├── comparers │ │ │ └── empty.txt │ │ └── def │ │ │ └── empty.txt │ ├── NuGet.Shared │ │ └── empty.txt │ ├── PackageManager.cs │ ├── PackageOperationEventArgs.cs │ ├── PackageRestoreConsent.cs │ ├── PackageSource │ │ ├── IPackageSourceProvider.cs │ │ ├── PackageSource.cs │ │ ├── PackageSourceProvider.cs │ │ └── PackageSourceProviderExtensions.cs │ ├── PackageWalker │ │ ├── ConflictResult.cs │ │ ├── DependencyVersion.cs │ │ ├── DependentsWalker.cs │ │ ├── IDependentsResolver.cs │ │ ├── IPackageOperationResolver.cs │ │ ├── InstallWalker.cs │ │ ├── NuGetVersionNotSatisfiedException.cs │ │ ├── PackageAction.cs │ │ ├── PackageMarker.cs │ │ ├── PackageOperation.cs │ │ ├── PackageSorter.cs │ │ ├── PackageTargets.cs │ │ ├── PackageWalkInfo.cs │ │ ├── PackageWalker.cs │ │ ├── UninstallWalker.cs │ │ └── UpdateWalker.cs │ ├── Packages │ │ ├── Constants.cs │ │ ├── DataServicePackage.cs │ │ ├── DefaultPackagePathResolver.cs │ │ ├── FrameworkAssemblyReference.cs │ │ ├── IFrameworkTargetable.cs │ │ ├── IPackage.cs │ │ ├── IPackageAssemblyReference.cs │ │ ├── IPackageFile.cs │ │ ├── IPackageMetadata.cs │ │ ├── IPackagePathResolver.cs │ │ ├── IServerPackageMetadata.cs │ │ ├── LocalPackage.cs │ │ ├── OptimizedZipPackage.cs │ │ ├── PackageDependency.cs │ │ ├── UnzippedPackage.cs │ │ ├── ZipPackage.cs │ │ ├── ZipPackageAssemblyReference.cs │ │ └── ZipPackageFile.cs │ ├── ProjectManager.cs │ ├── ProjectSystem │ │ ├── IBatchProcessor.cs │ │ ├── IFileSystem.cs │ │ ├── IProjectSystem.cs │ │ ├── NullFileSystem.cs │ │ ├── PhysicalFileSystem.cs │ │ └── ProjectImportLocation.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── NuGet.Core.nuspec │ ├── Repositories │ │ ├── AggregateQuery.cs │ │ ├── AggregateRepository.cs │ │ ├── BufferedEnumerable.cs │ │ ├── DataServiceContextWrapper.cs │ │ ├── DataServicePackageRepository.cs │ │ ├── DataServiceQueryWrapper.cs │ │ ├── ExpandedPackageRepository.cs │ │ ├── ExpressionRewriter.cs │ │ ├── ICloneableRepository.cs │ │ ├── ICultureAwareRepository.cs │ │ ├── IDataServiceContext.cs │ │ ├── IDataServiceQuery.cs │ │ ├── IDependencyResolver.cs │ │ ├── IFindPackagesRepository.cs │ │ ├── ILatestPackageLookup.cs │ │ ├── IOperationAwareRepository.cs │ │ ├── IPackageCacheRepository.cs │ │ ├── IPackageLookup.cs │ │ ├── IPackageName.cs │ │ ├── IPackageReferenceRepository.cs │ │ ├── IPackageRepository.cs │ │ ├── IPackageRepositoryFactory.cs │ │ ├── IServiceBasedRepository.cs │ │ ├── ISharedPackageRepository.cs │ │ ├── LazyLocalPackageRepository.cs │ │ ├── LazyQueue.cs │ │ ├── LocalPackageRepository.cs │ │ ├── MachineCache.cs │ │ ├── NullConstraintProvider.cs │ │ ├── OrderingComparer.cs │ │ ├── PackageName.cs │ │ ├── PackageReference.cs │ │ ├── PackageReferenceFile.cs │ │ ├── PackageReferenceRepository.cs │ │ ├── PackageRepositoryBase.cs │ │ ├── PackageRepositoryExtensions.cs │ │ ├── PackageRepositoryFactory.cs │ │ ├── PriorityPackageRepository.cs │ │ ├── ProgressEventArgs.cs │ │ ├── SharedPackageRepository.cs │ │ ├── SmartDataServiceQuery.cs │ │ └── UnzippedPackageRepository.cs │ ├── Resources │ │ ├── AnalysisResources.Designer.cs │ │ ├── AnalysisResources.resx │ │ ├── NuGetResources.Designer.cs │ │ └── NuGetResources.resx │ ├── Runtime │ │ ├── AssemblyBinding.cs │ │ ├── BindingRedirectManager.cs │ │ ├── BindingRedirectResolver.cs │ │ ├── IAssembly.cs │ │ └── RemoteAssembly.cs │ ├── SemanticVersion.cs │ ├── SemanticVersionTypeConverter.cs │ ├── Server │ │ └── PackageServer.cs │ └── Utility │ │ ├── CredentialResult.cs │ │ ├── CredentialState.cs │ │ ├── CryptoHashProvider.cs │ │ ├── CustomAttributeProviderExtensions.cs │ │ ├── DisposableAction.cs │ │ ├── EncryptionUtility.cs │ │ ├── EnvironmentUtility.cs │ │ ├── ExceptionUtility.cs │ │ ├── FrameworkNameEqualityComparer.cs │ │ ├── HashCodeCombiner.cs │ │ ├── IHashProvider.cs │ │ ├── IProgressProvider.cs │ │ ├── IVersionSpec.cs │ │ ├── MemoryCache.cs │ │ ├── PackageComparer.cs │ │ ├── PackageDownloader.cs │ │ ├── PackageEqualityComparer.cs │ │ ├── PackageHelper.cs │ │ ├── PackageIdValidator.cs │ │ ├── PackageRepositoryHelper.cs │ │ ├── PathUtility.cs │ │ ├── PathValidator.cs │ │ ├── ProjectManagerExtensions.cs │ │ ├── QueryableUtility.cs │ │ ├── ReadOnlyHashSet.cs │ │ ├── Token.cs │ │ ├── TokenCategory.cs │ │ ├── Tokenizer.cs │ │ ├── UriUtility.cs │ │ ├── VersionSpec.cs │ │ ├── VersionUtility.cs │ │ ├── WebRequestEventArgs.cs │ │ └── XmlUtility.cs ├── Dialog │ ├── CommonStyles.xaml │ ├── GlobalSuppressions.cs │ ├── LoadPageResult.cs │ ├── Nodes │ │ ├── EmptyTreeNode.cs │ │ ├── OnlineTreeNode.cs │ │ ├── PackagesSearchNode.cs │ │ ├── PackagesTreeNodeBase.cs │ │ ├── PagedPackagesSearchNode.cs │ │ ├── RootTreeNode.cs │ │ ├── SimpleTreeNode.cs │ │ └── UpdatesTreeNode.cs │ ├── OnlineProviderTemplates.xaml │ ├── PackageItem.cs │ ├── PackageManagerWindow.xaml │ ├── PackageManagerWindow.xaml.cs │ ├── PackageSortDescriptor.cs │ ├── PackagesProvider.cd │ ├── Providers │ │ ├── InstalledProvider.cs │ │ ├── OnlineProvider.cs │ │ ├── OnlineSearchProvider.cs │ │ ├── PackagesProviderBase.cs │ │ ├── SolutionInstalledProvider.cs │ │ ├── SolutionOnlineProvider.cs │ │ ├── SolutionUpdatesProvider.cs │ │ └── UpdatesProvider.cs │ └── TemplateStyles.xaml ├── Dialog10 │ ├── Dialog10.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packageicon.png ├── Dialog11 │ ├── Dialog11.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packageicon.png ├── Dialog12 │ ├── Dialog12.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packageicon.png ├── Dialog14 │ ├── Dialog14.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packageicon.png ├── DialogServices │ ├── DialogServices.csproj │ ├── GlobalSuppressions.cs │ ├── NativeMethods.cs │ ├── PackageManagerUI │ │ ├── Controls │ │ │ └── TextBlockControl.cs │ │ ├── Converters │ │ │ ├── BooleanToVisibilityConverter.cs │ │ │ ├── CountToVisibilityConverter.cs │ │ │ ├── DateTimeOffsetToLocalConverter.cs │ │ │ ├── DescriptionLabelConverter.cs │ │ │ ├── FixUrlConverter.cs │ │ │ ├── MultiNullToVisibilityConverter.cs │ │ │ ├── NormalizeTextConverter.cs │ │ │ ├── NullToVisibilityConverter.cs │ │ │ ├── ProjectToDisplayNameConverter.cs │ │ │ ├── ProjectToIconConverter.cs │ │ │ └── StringCollectionsToStringConverter.cs │ │ ├── FileConflictDialog.xaml │ │ ├── FileConflictDialog.xaml.cs │ │ ├── IProgressWindowOpener.cs │ │ ├── IProviderSettings.cs │ │ ├── IUpdateAllUIService.cs │ │ ├── IUserNotifierServices.cs │ │ ├── LazyRepository.cs │ │ ├── LicenseAcceptanceWindow.xaml │ │ ├── LicenseAcceptanceWindow.xaml.cs │ │ ├── OperationCoordinator.cs │ │ ├── PackageManagerWindowCommands.cs │ │ ├── ProgressDialog.xaml │ │ ├── ProgressDialog.xaml.cs │ │ ├── ProgressWindowOpener.cs │ │ ├── ProviderServices.cs │ │ ├── ProviderSettingsManager.cs │ │ ├── SummaryWindow.xaml │ │ ├── SummaryWindow.xaml.cs │ │ ├── UpdateAllUI.xaml │ │ ├── UpdateAllUI.xaml.cs │ │ ├── UpdateAllUIService.cs │ │ └── UserNotifierServices.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QueryExtensions.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── SolutionExplorer │ │ ├── FolderNode.cs │ │ ├── ProjectNode.cs │ │ ├── ProjectNodeBase.cs │ │ ├── ProjectUtilities.cs │ │ ├── SolutionExplorer.xaml │ │ ├── SolutionExplorer.xaml.cs │ │ ├── SolutionExplorerViewModel.cs │ │ └── SolutionWalker.cs │ ├── UIResources.cs │ ├── Visualizer │ │ └── Visualizer.cs │ └── WindowSizePersistenceHelper.cs ├── Options │ ├── GeneralOptionControl.Designer.cs │ ├── GeneralOptionControl.cs │ ├── GeneralOptionControl.resx │ ├── GeneralOptionPage.cs │ ├── GlobalSuppressions.cs │ ├── Options.csproj │ ├── OptionsPageBase.cs │ ├── PackageSourceOptionsPage.cs │ ├── PackageSourcesOptionsControl.Designer.cs │ ├── PackageSourcesOptionsControl.cs │ ├── PackageSourcesOptionsControl.resx │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Server │ ├── DataServices │ │ ├── Package.cs │ │ ├── PackageContext.cs │ │ ├── PackageIdComparisonVisitor.cs │ │ ├── Packages.svc │ │ ├── Packages.svc.cs │ │ ├── QueryTranslator.cs │ │ ├── QueryTranslatorProvider.cs │ │ ├── QueryableExtensions.cs │ │ ├── Routes.cs │ │ └── Routes.cs.pp │ ├── Default.aspx │ ├── Infrastructure │ │ ├── Bindings.cs │ │ ├── DerivedPackageData.cs │ │ ├── Helpers.cs │ │ ├── IPackageAuthenticationService.cs │ │ ├── IServerPackageRepository.cs │ │ ├── NinjectBootstrapper.cs │ │ ├── PackageAuthenticationService.cs │ │ ├── PackageUtility.cs │ │ └── ServerPackageRepository.cs │ ├── Packages │ │ └── Readme.txt │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── NuGet.Server.nuspec │ ├── Publishing │ │ ├── IPackageService.cs │ │ └── PackageService.cs │ ├── Server.csproj │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── favicon.ico │ ├── packages.config │ └── web.config.install.xdt ├── TeamFoundationServer │ ├── GlobalSuppressions.cs │ ├── ITfsPendingChange.cs │ ├── ITfsWorkspace.cs │ ├── TfsFileSystem.cs │ ├── TfsPendingChangeWrapper.cs │ ├── TfsSourceControlFileSystemProvider.cs │ └── TfsWorkspaceWrapper.cs ├── TeamFoundationServer10 │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ProviderConstants.cs │ └── TeamFoundationServer10.csproj ├── TeamFoundationServer11 │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ProviderConstants.cs │ └── TeamFoundationServer11.csproj ├── TeamFoundationServer12 │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ProviderConstants.cs │ └── TeamFoundationServer12.csproj ├── TeamFoundationServer14 │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ProviderConstants.cs │ └── TeamFoundationServer14.csproj ├── VisualStudio.Interop │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TemplateWizard.cs │ └── VisualStudio.Interop.csproj ├── VisualStudio │ ├── DeleteOnRestart │ │ ├── DeleteOnRestartManager.cs │ │ ├── IDeleteOnRestartManager.cs │ │ ├── RestartRequestBar.xaml │ │ └── RestartRequestBar.xaml.cs │ ├── ExceptionHelper.cs │ ├── Extensibility │ │ ├── IVsPackageInstaller.cs │ │ ├── IVsPackageInstallerEvents.cs │ │ ├── IVsPackageInstallerServices.cs │ │ ├── IVsPackageMetadata.cs │ │ ├── IVsPackageRestorer.cs │ │ ├── IVsPackageUninstaller.cs │ │ ├── VsPackageEventHandler.cs │ │ ├── VsPackageInstaller.cs │ │ ├── VsPackageInstallerEvents.cs │ │ ├── VsPackageInstallerServices.cs │ │ ├── VsPackageMetadata.cs │ │ ├── VsPackageRestorer.cs │ │ └── VsPackageUninstaller.cs │ ├── Extensions │ │ ├── DTEExtensions.cs │ │ ├── MSBuildProjectExtensions.cs │ │ ├── PackageExtensions.cs │ │ ├── ProjectSystemExtensions.cs │ │ └── ScriptExecutorExtensions.cs │ ├── FallbackRepository.cs │ ├── FrameworkAssemblyResolver.cs │ ├── GlobalSuppressions.cs │ ├── IFileSystemProvider.cs │ ├── IOptionsPageActivator.cs │ ├── IPackageOperationEventListener.cs │ ├── IProjectSystemFactory.cs │ ├── IRegistryKey.cs │ ├── IRepositorySettings.cs │ ├── IScriptExecutor.cs │ ├── ISolutionManager.cs │ ├── ISourceControlFileSystem.cs │ ├── ISourceControlFileSystemProvider.cs │ ├── IVSPackageManager.cs │ ├── IVsCommonOperations.cs │ ├── IVsPackageManagerFactory.cs │ ├── IVsShellInfo.cs │ ├── IVsSourceControlTracker.cs │ ├── IVsTemplateWizard.cs │ ├── IVsWebsiteHandler.cs │ ├── IWindowSettingsManager.cs │ ├── Ioc │ │ └── ServiceLocator.cs │ ├── MessageHelper.cs │ ├── NativeMethods.cs │ ├── NuGetAwareProjectPackageRepository.cs │ ├── NullPackageOperationEventListener.cs │ ├── OptionsPage.cs │ ├── OptionsPageActivator.cs │ ├── OutputConsole │ │ ├── IOutputConsoleProvider.cs │ │ ├── OutputConsole.cs │ │ └── OutputConsoleProvider.cs │ ├── PSScriptExecutor.cs │ ├── PackageNotInstalledException.cs │ ├── PackageRestore │ │ ├── IPackageRestoreManager.cs │ │ ├── PackageRestoreBar.xaml │ │ ├── PackageRestoreBar.xaml.cs │ │ ├── PackageRestoreManager.cs │ │ └── PackagesMissingStatusEventArgs.cs │ ├── PackageSource │ │ ├── AggregatePackageSource.cs │ │ ├── CachedRepositoryFactory.cs │ │ ├── IVsPackageSourceProvider.cs │ │ ├── VSPackageSourceProvider.cs │ │ └── VSPackageSourceRepository.cs │ ├── PowershellScripts.cs │ ├── PreinstalledPackageConfiguration.cs │ ├── PreinstalledPackageInfo.cs │ ├── PreinstalledPackageInstaller.cs │ ├── ProductUpdate │ │ ├── IProductUpdateService.cs │ │ ├── IProductUpdateSettings.cs │ │ ├── IUpdateWorker.cs │ │ ├── NullUpdateWorker.cs │ │ ├── ProductUpdateAvailableEventArgs.cs │ │ ├── ProductUpdateBar.xaml │ │ ├── ProductUpdateBar.xaml.cs │ │ ├── ProductUpdateService.cs │ │ ├── VS2010UpdateWorker.cs │ │ └── VsProductUpdateSettings.cs │ ├── ProjectCache.cs │ ├── ProjectEventArgs.cs │ ├── ProjectExtensions.cs │ ├── ProjectName.cs │ ├── ProjectSystems │ │ ├── CpsProjectSystem.cs │ │ ├── FSharpProjectSystem.cs │ │ ├── IVsProjectSystem.cs │ │ ├── JsProjectSystem.cs │ │ ├── NativeProjectSystem.cs │ │ ├── NuGetAwareProjectSystem.cs │ │ ├── VsProjectSystem.cs │ │ ├── VsProjectSystemFactory.cs │ │ ├── WebProjectSystem.cs │ │ ├── WebSiteProjectSystem.cs │ │ ├── WindowsStoreProjectSystem.cs │ │ └── WixProjectSystem.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── NuGet.VisualStudio.nuspec │ │ └── install.ps1 │ ├── QuickSearch │ │ ├── NuGetStaticSearchResult.cs │ │ ├── NugetSearchProvider.cs │ │ └── NugetSearchTask.cs │ ├── RegistryKeyWrapper.cs │ ├── RepositorySettings.cs │ ├── Resources │ │ ├── VsResources.Designer.cs │ │ └── VsResources.resx │ ├── RuntimeHelpers.cs │ ├── Settings │ │ ├── ISettingsManager.cs │ │ ├── ISettingsStore.cs │ │ ├── IWritableSettingsStore.cs │ │ ├── SettingsManagerBase.cs │ │ ├── SettingsManagerWrapper.cs │ │ ├── SettingsStoreWrapper.cs │ │ └── WritableSettingsStoreWrapper.cs │ ├── SkipAssemblyReferencesPackage.cs │ ├── SmartOutputConsoleProvider.cs │ ├── SolutionExtensions.cs │ ├── SolutionFolderFileSystem.cs │ ├── SolutionManager.cs │ ├── TfsSourceControlFileSystemProviderPicker.cs │ ├── Utility │ │ ├── NuGetEvent.cs │ │ ├── NuGetEventTrigger.cs │ │ ├── PathHelper.cs │ │ ├── SettingsHelper.cs │ │ ├── SourceControlHelper.cs │ │ ├── UriHelper.cs │ │ ├── VsHierarchyHelper.cs │ │ ├── VsHierarchyItem.cs │ │ └── VsVersionHelper.cs │ ├── VCProjectHelper.cs │ ├── VSConstants.cs │ ├── VSPackageManager.cs │ ├── VSRequestCredentialProvider.cs │ ├── VisualStudio.csproj │ ├── VisualStudioCredentialProvider.cs │ ├── VisualStudioUIWrapper.cs │ ├── VsCommonOperations.cs │ ├── VsFileSystemProvider.cs │ ├── VsMachineWideSettings.cs │ ├── VsPackageManagerFactory.cs │ ├── VsSettings.cs │ ├── VsShellInfo.cs │ ├── VsSourceControlTracker.cs │ ├── VsTemplateWizard.cs │ ├── VsUtility.cs │ ├── VsWebsiteHandler.cs │ └── WindowSettingsManager.cs ├── VisualStudio10 │ ├── GalleryEntry.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── VisualStudio10.csproj ├── VisualStudio12 │ ├── ProjectHelper.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── VisualStudio12.csproj ├── VisualStudio14 │ ├── ProjectHelper.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── VisualStudio14.csproj ├── VsConsole │ ├── Console.Types │ │ ├── Console.Types.csproj │ │ ├── DisplayNameAttribute.cs │ │ ├── GlobalSuppressions.cs │ │ ├── HostNameAttribute.cs │ │ ├── ICommandExpansion.cs │ │ ├── ICommandExpansionProvider.cs │ │ ├── ICommandTokenizer.cs │ │ ├── ICommandTokenizerProvider.cs │ │ ├── IConsole.cs │ │ ├── IConsoleDispatcher.cs │ │ ├── IConsoleInitializer.cs │ │ ├── IConsoleStatus.cs │ │ ├── IHost.cs │ │ ├── IHostMetadata.cs │ │ ├── IHostProvider.cs │ │ ├── IPathExpansion.cs │ │ ├── IPowerConsoleWindow.cs │ │ ├── ITabExpansion.cs │ │ ├── IWpfConsole.cs │ │ ├── IWpfConsoleService.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SimpleExpansion.cs │ │ ├── Token.cs │ │ ├── TokenType.cs │ │ └── VsKeyInfo.cs │ ├── Console │ │ ├── Console.csproj │ │ ├── Console │ │ │ ├── ConsoleDispatcher.cs │ │ │ ├── IHostNameMetadata.cs │ │ │ ├── IPrivateConsoleStatus.cs │ │ │ ├── InputHistory.cs │ │ │ ├── OleCommandFilter.cs │ │ │ ├── OrderedSpans.cs │ │ │ ├── TextFormatClassifier.cs │ │ │ ├── WpfConsole.cs │ │ │ ├── WpfConsoleClassifier.cs │ │ │ ├── WpfConsoleCompletionSource.cs │ │ │ ├── WpfConsoleKeyProcessor.cs │ │ │ └── WpfConsoleService.cs │ │ ├── ConsoleContainer.xaml │ │ ├── ConsoleContainer.xaml.cs │ │ ├── ConsoleInitializer.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Guids.cs │ │ ├── IHostInitializer.cs │ │ ├── IPowerConsoleService.cs │ │ ├── NativeMethods.cs │ │ ├── PkgCmdID.cs │ │ ├── PowerConsole │ │ │ ├── ClassifierProvider.cs │ │ │ ├── CompletionSourceProvider.cs │ │ │ ├── HostInfo.cs │ │ │ └── PowerConsoleWindow.cs │ │ ├── PowerConsoleToolWindow.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ └── Utils │ │ │ ├── CommonExtensionMethods.cs │ │ │ ├── EventArgs.cs │ │ │ ├── ExtensionMethods.cs │ │ │ ├── Marshaler.cs │ │ │ ├── ObjectWithFactory.cs │ │ │ └── UtilityMethods.cs │ ├── PowerShellCmdlets │ │ ├── AddBindingRedirectCommand.cs │ │ ├── FileConflictAction.cs │ │ ├── FindPackageCommand.cs │ │ ├── GetPackageCommand.cs │ │ ├── GetProjectCommand.cs │ │ ├── GetRemotePackageIdCommand.cs │ │ ├── GetRemotePackageVersionCommand.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Help │ │ │ ├── NuGet.Cmdlets.dll-Help.xml │ │ │ └── about_NuGet.Cmdlets.help.txt │ │ ├── IErrorHandler.cs │ │ ├── InstallPackageCommand.cs │ │ ├── JsonApiCommandBase.cs │ │ ├── NuGetBaseCommand.cs │ │ ├── NuGetErrorId.cs │ │ ├── OpenPackagePageCommand.cs │ │ ├── PSPathUtility.cs │ │ ├── PowerShellCmdlets.csproj │ │ ├── ProcessPackageBaseCommand.cs │ │ ├── ProgressActivityIds.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── UninstallPackageCommand.cs │ │ └── UpdatePackageCommand.cs │ ├── PowerShellHost │ │ ├── AsyncPowerShellHost.cs │ │ ├── Command.cs │ │ ├── CommandParser.cs │ │ ├── CommandTokenizer.cs │ │ ├── GlobalSuppressions.cs │ │ ├── HostUtilities.cs │ │ ├── IRunspaceManager.cs │ │ ├── NativeMethods.cs │ │ ├── NuGetHostRawUserInterface.cs │ │ ├── NuGetHostUserInterface.cs │ │ ├── NuGetPSHost.cs │ │ ├── PSTypeWrapper.cs │ │ ├── PowerShellHost.cs │ │ ├── PowerShellHost.csproj │ │ ├── PowerShellHost.csproj.vspscc │ │ ├── PowerShellHostService.cs │ │ ├── ProjectExtensions.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── RunspaceDispatcher.cs │ │ ├── RunspaceManager.cs │ │ ├── Scripts │ │ │ ├── Add-WrapperMembers.ps1 │ │ │ ├── NuGet.Format.ps1xml │ │ │ ├── NuGet.Types.ps1xml │ │ │ ├── NuGet.psd1 │ │ │ ├── Profile.ps1 │ │ │ └── nuget.psm1 │ │ ├── SyncPowerShellHost.cs │ │ └── Utils │ │ │ ├── CommandExpansion.cs │ │ │ ├── ComplexCommand.cs │ │ │ ├── MethodBinder.cs │ │ │ └── TypeWrapper.cs │ └── PowerShellHostProvider │ │ ├── CommandTokenizerProvider.cs │ │ ├── PowerShellCommandExpansionProvider.cs │ │ ├── PowerShellHostProvider.cs │ │ ├── PowerShellHostProvider.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── RegistryHelper.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ └── UnsupportedHost.cs ├── VsEvents │ ├── GlobalSuppressions.cs │ ├── PackageReferenceFileList.cs │ ├── PackageRestorer.cs │ ├── ProjectPackageReferenceFile.cs │ ├── ProjectRetargetingHandler.cs │ ├── ProjectRetargetingUtility.cs │ ├── ProjectUpgradeHandler.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── VsEvents.csproj └── VsExtension │ ├── FontAndColorsRegistrationAttribute.cs │ ├── Guids.cs │ ├── LICENSE.txt │ ├── NuGetPackage.cs │ ├── NuGetTools.vsct │ ├── NuGetVSEventsPackage.cs │ ├── PkgCmdID.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ProvideBindingPath.cs │ ├── ProvideExpressLoadKeyAttribute.cs │ ├── ProvideSearchProviderAttribute.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Resources │ ├── Toolbar.png │ ├── nugetAbout.ico │ ├── nuget_256.png │ └── nuget_96.png │ ├── VSPackage.resx │ ├── VsExtension.csproj │ ├── vs10.vsixmanifest │ ├── vs12.vsixmanifest │ └── vs14.vsixmanifest └── test ├── CommandLine.Test ├── CachedPackageSourceProviderTest.cs ├── CommandAttributeTests.cs ├── CommandLine.Test.csproj ├── CommandLinePaserTests.cs ├── CommandManagerTests.cs ├── CommandTest.cs ├── ConfigCommandTest.cs ├── DefaultSpecValuesRuleTest.cs ├── DeleteCommandTest.cs ├── InstallCommandTest.cs ├── ListCommandTests.cs ├── LocalizedResourceManagerTest.cs ├── MirrorCommandTest.cs ├── MockConsole.cs ├── MockResourceType.Designer.cs ├── MockResourceType.resx ├── OptionAttributeTests.cs ├── PackCommandTest.cs ├── ProgramTest.cs ├── ProjectFactoryTest.cs ├── ProjectHelperTest.cs ├── PushCommandTest.cs ├── ResourceHelperTests.cs ├── RestoreCommandTest.cs ├── SelfUpdaterTests.cs ├── SetApiKeyCommandTest.cs ├── SolutionParserTest.cs ├── SourcesCommandTest.cs ├── TypeHelperTest.cs ├── UpdateCommandTest.cs └── packages.config ├── Core.Test ├── AggregateQueryTest.cs ├── AggregateRepositoryTest.cs ├── Analysis │ ├── InitScriptNotUnderToolsRuleTest.cs │ ├── InvalidFrameworkFolderRuleTest.cs │ ├── MisplacedAssemblyRuleTest.cs │ ├── MisplacedScriptFileRuleTest.cs │ ├── MisplacedTransformFileRuleTest.cs │ ├── MissingSummaryRuleTest.cs │ ├── PackageIssueTestHelper.cs │ └── WinRTNameObsoleteRuleTest.cs ├── AssemblyBindingTest.cs ├── BindingRedirectManagerTest.cs ├── BindingRedirectResolverTest.cs ├── BufferedEnumerableTest.cs ├── ConfigurationDefaultsTest.cs ├── Core.Test.csproj ├── CryptoHashProviderTest.cs ├── DataServicePackageRepositoryTest.cs ├── DataServicePackageTest.cs ├── DataServiceQueryWrapperTest.cs ├── DefaultPackagePathResolverTest.cs ├── EnumerableExtensionsTest.cs ├── ExpandedPackageRepositoryTests.cs ├── Extensions │ └── VersionExtensionsTest.cs ├── FileSystemExtensionsTest.cs ├── LazyLocalPackageRepositoryTest.cs ├── LocalPackageRepositoryTest.cs ├── LocalPackageTest.cs ├── MachineCacheTest.cs ├── ManifestFileTest.cs ├── ManifestSchemaUtilityTest.cs ├── ManifestTest.cs ├── ManifestVersionUtilityTest.cs ├── Mocks │ └── MockAssembly.cs ├── NetPortableProfileTableTest.cs ├── NetPortableProfileTest.cs ├── NullFileSystemTest.cs ├── NullSettingsTest.cs ├── OptimizedZipPackageTest.cs ├── PackageBuilderTest.cs ├── PackageDependencyTest.cs ├── PackageExtensionsTest.cs ├── PackageHelperTest.cs ├── PackageIdValidatorTest.cs ├── PackageManagerTest.cs ├── PackageOperationExtensionsTest.cs ├── PackageReferenceFileTest.cs ├── PackageReferenceRepositoryTest.cs ├── PackageRepositoryExtensionsTest.cs ├── PackageRepositoryFactoryTest.cs ├── PackageRepositoryTest.cs ├── PackageRestoreConsentTest.cs ├── PackageServerTest.cs ├── PackageSorterTest.cs ├── PackageSourceProviderTest.cs ├── PackageUtilityTest.cs ├── PackageWalkerTest.cs ├── PathResolverTest.cs ├── PathUtilityTest.cs ├── PathValidatorTest.cs ├── PhysicalFileSystemTest.cs ├── PreprocessorTest.cs ├── ProjectManagerTest.cs ├── ProjectSystemExtensionsTest.cs ├── Properties │ └── AssemblyInfo.cs ├── ProxyCacheTest.cs ├── RedirectedHttpClientTest.cs ├── SemVer201SpecTests.cs ├── SemanticVersionTest.cs ├── SettingsCredentialProviderTest.cs ├── SettingsTests.cs ├── SharedPackageRepositoryTest.cs ├── SmartDataServiceQueryTest.cs ├── StreamExtensionsTest.cs ├── TokenizerTest.cs ├── UnzippedPackageRepositoryTest.cs ├── UnzippedPackageTest.cs ├── UriHelperTest.cs ├── UriUtilityTest.cs ├── VersionComparerTests.cs ├── VersionParsingTests.cs ├── VersionSpecTest.cs ├── VersionUtilityTest.cs ├── XdtTransformTest.cs ├── XmlExtensionsTest.cs ├── ZipPackageTest.cs └── packages.config ├── Dialog.Test ├── DateTimeOffsetToLocalConverterTest.cs ├── Dialog.Test.csproj ├── EmptyTreeNodeTest.cs ├── InstalledProviderTest.cs ├── Mocks │ ├── MockOutputConsoleProvider.cs │ ├── MockPackagesProvider.cs │ ├── MockTreeNode.cs │ └── MockVsProjectSystem.cs ├── OnlineProviderTest.cs ├── OnlineSearchProviderTest.cs ├── PackageItemTest.cs ├── PackagesProviderBaseTest.cs ├── PackagesSearchNodeTest.cs ├── PackagesTreeNodeBaseTest.cs ├── ProjectSelectorServiceExtensions.cs ├── Properties │ └── AssemblyInfo.cs ├── QueryExtensionsTest.cs ├── SimpleTreeNodeTest.cs ├── SolutionExplorer │ ├── FolderNodeTest.cs │ ├── MockProjectUtility.cs │ └── ProjectNodeTest.cs ├── SolutionInstalledProviderTest.cs ├── SolutionOnlineProviderTest.cs ├── SolutionUpdatesProviderTest.cs ├── UpdatesProviderTest.cs ├── UpdatesTreeNodeTest.cs └── packages.config ├── EndToEnd ├── NuGet.Tests.psm1 ├── Packages │ ├── AddingBindingRedirectAfterUpdate │ │ └── AddingBindingRedirectAfterUpdate.dgml │ ├── AddingBindingRedirectsNoOpOnClassLibrary │ │ └── BindingRedirectsGraph.dgml │ ├── BindingRedirectClassLibraryWithDifferentDependents │ │ └── BindingRedirectsGraph.dgml │ ├── BindingRedirectComplex │ │ └── BindingRedirectsGraph.dgml │ ├── BindingRedirectDoesNotAddToSilverlightProject │ │ ├── HostSL.1.0.0.nuspec │ │ ├── TestSL.1.0.0.nuspec │ │ └── files │ │ │ ├── HostSL.1.0.0 │ │ │ └── lib │ │ │ │ └── sl40 │ │ │ │ └── HostSL.dll │ │ │ └── TestSL.1.0.0 │ │ │ └── lib │ │ │ └── sl40 │ │ │ └── TestSL.dll │ ├── BindingRedirectDuplicateReferences │ │ └── BindingRedirectsGraph.dgml │ ├── BindingRedirectInstallLargeProject │ │ └── BindingRedirectsGraph.dgml │ ├── BindingRedirectProjectsThatReferenceDifferentVersionsOfSameAssembly │ │ └── BindingRedirectsGraph.dgml │ ├── BindingRedirectProjectsThatReferenceSameAssemblyFromDifferentLocations │ │ └── BindingRedirectsGraph.dgml │ ├── ComplexUpdateSubTree │ │ └── ComplexUpdateSubTree.dgml │ ├── DiamondDependencies │ │ └── DiamondDependencies.dgml │ ├── EnablePackageRestoreModifyProjectThatInstallNewPackages │ │ └── jQuery.1.5.nuspec │ ├── EnablePackageRestoreModifyProjectsWhenThePackagesFolderIsMissing │ │ └── jQuery.1.5.nuspec │ ├── EnablePackageRestoreOnlyModifyProjectsThatHaveInstalledPackages │ │ └── jQuery.1.5.nuspec │ ├── ExplicitCallToAddBindingRedirectAddsBindingRedirectsToClassLibrary │ │ └── BindingRedirectsGraph.dgml │ ├── FSharpSimpleInstallWithContentFiles │ │ └── jQuery.1.5.nuspec │ ├── FSharpSimpleWithAssemblyReference │ │ └── Antlr.1.0.0.nuspec │ ├── FailedInstallRollsBackInstall │ │ └── haack.metaweblog.0.1.0.nuspec │ ├── FileTransformWorksOnDependentFile │ │ ├── TTFile.1.0.0.nuspec │ │ ├── files │ │ │ ├── TTFile.1.0.0 │ │ │ │ └── content │ │ │ │ │ └── one.tt │ │ │ └── test.1.0.0 │ │ │ │ └── content │ │ │ │ └── one.config.transform │ │ └── test.1.0.0.nuspec │ ├── GetPackageAcceptsRelativePathSource │ │ └── empty.txt │ ├── GetPackageForFSharpProjectReturnsCorrectPackages │ │ └── jQuery.1.5.nuspec │ ├── GetPackageForFSharpProjectReturnsCorrectPackages2 │ │ ├── MyAwesomeLibrary.1.0.nuspec │ │ └── jQuery.1.5.nuspec │ ├── GetPackageForProjectReturnsCorrectPackages │ │ └── jQuery.1.5.nuspec │ ├── GetPackageForProjectReturnsCorrectPackages2 │ │ ├── MyAwesomeLibrary.1.0.nuspec │ │ └── jQuery.1.5.nuspec │ ├── GetPackageForProjectReturnsEmptyIfItHasNoInstalledPackage2 │ │ └── jQuery.1.5.nuspec │ ├── GetPackageWithoutProjectNameReturnsInstalledPackagesInTheSolution │ │ ├── jQuery.1.5.nuspec │ │ └── netfx-Guard.1.2.0.0.nuspec │ ├── InstallCanPipeToFSharpProjects │ │ └── elmah.1.1.nuspec │ ├── InstallComplexPackageStructure │ │ └── MyFirstPackage.1.0.0.1.nuspec │ ├── InstallFailCleansUpSatellitePackageFiles │ │ ├── A.1.0.0.nuspec │ │ ├── A.1.2.0.nuspec │ │ └── A.fr.1.0.0.nuspec │ ├── InstallLatestVersionWorksCorrectly │ │ └── InstallLatestVersionWorksCorrectly.dgml │ ├── InstallLatestVersionWorksCorrectlyWithPrerelease │ │ └── InstallLatestVersionWorksCorrectlyWithPrerelease.dgml │ ├── InstallMetaPackageWorksAsExpected │ │ ├── Dependency.1.0.0.nuspec │ │ └── MetaPackage.1.0.0.nuspec │ ├── InstallMetadataPackageAddPackageToProject │ │ ├── DependencyPackage.1.0.0.nuspec │ │ └── MetadataPackage.1.0.0.nuspec │ ├── InstallPackageAddImportStatement │ │ ├── PackageWithImport.2.0.0.nuspec │ │ └── files │ │ │ └── PackageWithImport.2.0.0 │ │ │ └── build │ │ │ ├── PackageWithImport.props │ │ │ └── PackageWithImport.targets │ ├── InstallPackageAfterRenaming │ │ └── jQuery.1.5.nuspec │ ├── InstallPackageDoNotUninstallDependenciesWhenSafeUpdatingDependency │ │ ├── Microsoft.AspNet.Razor.2.0.20710.0.nuspec │ │ ├── Microsoft.AspNet.WebPages.2.0.20710.0.nuspec │ │ ├── Microsoft.AspNet.WebPages.Administration.2.0.20710.0.nuspec │ │ ├── Microsoft.AspNet.WebPages.Administration.2.0.20713.0.nuspec │ │ ├── Microsoft.Web.Infrastructure.1.0.0.0.nuspec │ │ ├── Nuget.Core.1.6.2.nuspec │ │ └── microsoft-web-helpers.2.0.20710.0.nuspec │ ├── InstallPackageExecuteCorrectInstallScriptsAccordingToTargetFramework │ │ ├── TestTargetFxPSScripts.1.0.0.nuspec │ │ └── files │ │ │ └── TestTargetFxPSScripts.1.0.0 │ │ │ └── tools │ │ │ ├── init.ps1 │ │ │ ├── net40 │ │ │ ├── install.ps1 │ │ │ └── uninstall.ps1 │ │ │ └── silverlight │ │ │ ├── install.ps1 │ │ │ └── uninstall.ps1 │ ├── InstallPackageExecuteCorrectInstallScriptsAccordingToTargetFramework2 │ │ ├── TestTargetFxPSScripts.1.0.0.nuspec │ │ └── files │ │ │ └── TestTargetFxPSScripts.1.0.0 │ │ │ └── tools │ │ │ ├── init.ps1 │ │ │ ├── net40 │ │ │ ├── install.ps1 │ │ │ └── uninstall.ps1 │ │ │ └── silverlight │ │ │ ├── install.ps1 │ │ │ └── uninstall.ps1 │ ├── InstallPackageIgnoreInitScriptIfItIsNotDirectlyUnderTools │ │ ├── TestTargetFxInvalidInitScript.1.0.0.nuspec │ │ └── files │ │ │ └── TestTargetFxInvalidInitScript.1.0.0 │ │ │ └── tools │ │ │ ├── net30 │ │ │ ├── init.ps1 │ │ │ ├── install.ps1 │ │ │ └── uninstall.ps1 │ │ │ └── silverlight │ │ │ ├── init.ps1 │ │ │ ├── install.ps1 │ │ │ └── uninstall.ps1 │ ├── InstallPackageIgnoreInitScriptIfItIsNotDirectlyUnderTools2 │ │ ├── TestTargetFxInvalidInitScript.1.0.0.nuspec │ │ └── files │ │ │ └── TestTargetFxInvalidInitScript.1.0.0 │ │ │ └── tools │ │ │ ├── net30 │ │ │ ├── init.ps1 │ │ │ ├── install.ps1 │ │ │ └── uninstall.ps1 │ │ │ └── silverlight │ │ │ ├── init.ps1 │ │ │ ├── install.ps1 │ │ │ └── uninstall.ps1 │ ├── InstallPackageInstallContentFilesAccordingToTargetFramework │ │ └── TestTargetFxContentFiles.nuspec │ ├── InstallPackageInstallContentFilesAccordingToTargetFramework2 │ │ └── TestTargetFxContentFiles.nuspec │ ├── InstallPackageInstallCorrectDependencyPackageBasedOnTargetFramework │ │ ├── TestDependencyTargetFramework.2.0.0.nuspec │ │ ├── TestEmptyContentFolder.1.0.0.nuspec │ │ ├── TestEmptyLibFolder.1.0.0.nuspec │ │ └── TestEmptyToolsFolder.1.0.0.nuspec │ ├── InstallPackageIntoJSAppOnWin81UseTheCorrectFxFolder │ │ └── Java.1.0.0.nuspec │ ├── InstallPackageIntoJSWindowsPhoneAppOnWin81UseTheCorrectFxFolder │ │ └── Java.1.0.0.nuspec │ ├── InstallPackagePersistTargetFrameworkToPackagesConfig │ │ ├── PackageA.1.0.0.nuspec │ │ └── PackageB.1.0.0.nuspec │ ├── InstallPackageRespectAssemblyReferenceFilterOnDependencyPackages │ │ ├── A.1.0.0.nuspec │ │ └── B.1.0.0.nuspec │ ├── InstallPackageRespectAssemblyReferenceFilterOnSecondProject │ │ └── B.1.0.0.nuspec │ ├── InstallPackageRespectReferencesAccordingToDifferentFrameworks │ │ ├── RefPackage.1.0.0.nuspec │ │ └── files │ │ │ └── RefPackage.1.0.0 │ │ │ └── lib │ │ │ └── sl40 │ │ │ └── fear.dll │ ├── InstallPackageThatTargetsWindowsPhone │ │ └── WpPackage.1.0.0.nuspec │ ├── InstallPackageThrowsIfMinClientVersionIsNotSatisfied │ │ └── kitty.1.0.0.nuspec │ ├── InstallPackageThrowsIfThereIsNoCompatibleContentFiles │ │ └── TestTargetFxContentFiles.nuspec │ ├── InstallPackageWithDependencyVersionHighest │ │ └── InstallPackageWithDependencyVersionHighest.dgml │ ├── InstallPackageWithDependencyVersionHighestMinor │ │ └── InstallPackageWithDependencyVersionHighestMinor.dgml │ ├── InstallPackageWithDependencyVersionHighestPatch │ │ └── InstallPackageWithDependencyVersionHighestPatch.dgml │ ├── InstallPackageWithDependencyVersionLowest │ │ └── InstallPackageWithDependencyVersionLowest.dgml │ ├── InstallPackageWithEmptyContentFrameworkFolder │ │ └── TestEmptyContentFolder.1.0.0.nuspec │ ├── InstallPackageWithEmptyLibFrameworkFolder │ │ └── TestEmptyLibFolder.1.0.0.nuspec │ ├── InstallPackageWithEmptyToolsFrameworkFolder │ │ └── TestEmptyToolsFolder.1.0.0.nuspec │ ├── InstallPackageWithResourceAssemblies │ │ └── FluentValidation.2.0.0.0.nuspec │ ├── InstallPackageWithXdtTransformTransformsTheFile │ │ ├── XdtPackage.1.0.0.nuspec │ │ └── files │ │ │ └── XdtPackage.1.0.0 │ │ │ └── content │ │ │ └── web.config.install.xdt │ ├── InstallPackageWithoutDependencyVersion │ │ └── InstallPackageWithoutDependencyVersion.dgml │ ├── InstallSatellitePackageCopiesFilesToExistingRuntimePackageFolder │ │ ├── PackageWithStrongNamedLib.1.1.nuspec │ │ ├── PackageWithStrongNamedLib.ja-jp.1.0.nuspec │ │ └── files │ │ │ └── PackageWithStrongNamedLib.ja-jp.1.0 │ │ │ ├── RootFile.txt │ │ │ └── content │ │ │ ├── ja-jp.txt │ │ │ └── ja-jp │ │ │ └── file.txt │ ├── InstallSatellitePackageCopiesFilesToRuntimeFolderWhenInstalledAsDependency │ │ ├── PackageWithStrongNamedLib.1.1.nuspec │ │ ├── PackageWithStrongNamedLib.ja-jp.1.0.nuspec │ │ └── files │ │ │ └── PackageWithStrongNamedLib.ja-jp.1.0 │ │ │ ├── RootFile.txt │ │ │ └── content │ │ │ ├── ja-jp.txt │ │ │ └── ja-jp │ │ │ └── file.txt │ ├── InstallWithConflictDoesNotUpdateToPrerelease │ │ └── InstallWithConflictDoesNotUpdateToPrerelease.dgml │ ├── InstallingPackageWithDependencyThatFailsShouldRollbackSuccessfully │ │ ├── GoodPackageWithBadDependency.1.0.nuspec │ │ ├── PackageWithBadDependency.1.0.nuspec │ │ ├── PackageWithBadInstallScript.1.0.nuspec │ │ └── files │ │ │ └── PackageWithBadInstallScript.1.0 │ │ │ └── tools │ │ │ └── install.ps1 │ ├── InstallingSatellitePackageOnlyCopiesCultureSpecificLibFolderContents │ │ ├── PackageWithStrongNamedLib.1.1.nuspec │ │ ├── PackageWithStrongNamedLib.ja-jp.1.0.nuspec │ │ └── files │ │ │ └── PackageWithStrongNamedLib.ja-jp.1.0 │ │ │ ├── RootFile.txt │ │ │ ├── content │ │ │ ├── ja-jp.txt │ │ │ └── ja-jp │ │ │ │ └── file.txt │ │ │ └── lib │ │ │ ├── Core.resources.dll │ │ │ └── ja-jp │ │ │ ├── Core.resources.dll │ │ │ ├── collision-differences.resources.dll │ │ │ └── collision-match.resources.dll │ ├── InstallingSatellitePackageToWebsiteCopiesResourcesToBin │ │ ├── Test.1.0.nuspec │ │ └── Test.fr-FR.1.0.nuspec │ ├── NewtonSoftJsonWithDNX.6.0.8.nupkg │ ├── NonStrongNameA.1.0.0.0.nupkg │ ├── NonStrongNameB.1.0.0.0.nupkg │ ├── NonStrongNameB.2.0.0.0.nupkg │ ├── OpenPackagePageTestPackage.1.0.nupkg │ ├── PackageInstallAcceptsRelativePathSource │ │ └── empty.txt │ ├── PackageTargetingNetClientAndNet.1.0.0.0.nupkg │ ├── PackageWithCSSourceFiles.1.0.nupkg │ ├── PackageWithClientProfileAndFullFrameworkPicksClient │ │ └── MyAwesomeLibrary.1.0.nuspec │ ├── PackageWithConfigTransformInstallToWinJsProject │ │ ├── PackageWithTransform.1.0.0.nuspec │ │ └── files │ │ │ └── PackageWithTransform.1.0.0 │ │ │ └── content │ │ │ ├── b.config.transform │ │ │ └── root │ │ │ └── a.config.transform │ ├── PackageWithContentFile.1.0.nupkg │ ├── PackageWithContentFileAndDependency.1.0.nupkg │ ├── PackageWithDependencyOnPrereleaseTestPackage.1.0.nupkg │ ├── PackageWithExeReference.1.0.nupkg │ ├── PackageWithExternalDependency.0.5.nupkg │ ├── PackageWithExternalDependency.1.0.nupkg │ ├── PackageWithFailingInitPs1.1.0.nupkg │ ├── PackageWithFileNamedAppCode.1.0.nupkg │ ├── PackageWithFolder.1.0.nupkg │ ├── PackageWithFooContentFile.1.0.nupkg │ ├── PackageWithGacReferences.1.0.nupkg │ ├── PackageWithIncompatibleAssembliesRollsInstallBack │ │ └── BingMapAppSDK.1.0.1011.1716.nuspec │ ├── PackageWithNestedAspxFiles.1.0.nupkg │ ├── PackageWithNestedAspxPPFiles.1.0.nupkg │ ├── PackageWithNestedFile.1.0.nupkg │ ├── PackageWithNestedReferenceFolders.1.0.nupkg │ ├── PackageWithNet40AndSLLibButOnlySLGacRefs.1.0.nupkg │ ├── PackageWithNoVersionInFolderName.1.0.nupkg │ ├── PackageWithNonExistentGacReferences.1.0.nupkg │ ├── PackageWithNonStrongNamedLibA.1.0.nupkg │ ├── PackageWithNonStrongNamedLibB.1.0.nupkg │ ├── PackageWithPPCSSourceFiles.1.0.nupkg │ ├── PackageWithPPVBSourceFiles.1.0.nupkg │ ├── PackageWithReferences.1.0.nupkg │ ├── PackageWithRootNamespaceFileTransform.1.0.nupkg │ ├── PackageWithScripts.1.0.nupkg │ ├── PackageWithSourceFileUnderAppCode.1.0.nupkg │ ├── PackageWithStrongNamedLib.1.0.nupkg │ ├── PackageWithTextFile.1.0.nupkg │ ├── PackageWithTextFile.2.0.nupkg │ ├── PackageWithUnboundedDependency.1.0.nupkg │ ├── PackageWithUnsupportedReferences.1.0.nupkg │ ├── PackageWithVBSourceFiles.1.0.nupkg │ ├── PackageWithWebDebugConfig.1.0.nupkg │ ├── PackageWithXmlTransformAndTokenReplacement.1.0.nupkg │ ├── PreReleaseTestPackage.1.0.0-a.nupkg │ ├── PreReleaseTestPackage.1.0.0-b.nupkg │ ├── PreReleaseTestPackage.1.0.0.nupkg │ ├── PreReleaseTestPackage.1.0.1-a.nupkg │ ├── PreReleaseTestPackage.A.1.0.0-a.nupkg │ ├── PreReleaseTestPackage.A.1.0.0.nupkg │ ├── ProjectRetargeting-ClearErrorAndWarningRetargetBackToOriginalFramework │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec │ ├── ProjectRetargeting-ClearErrorUponCleanProject │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec │ ├── ProjectRetargeting-ClearErrorUponCloseSolution │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec │ ├── ProjectRetargeting-ClearReinstallationFlagRetargetBackToOriginalFramework │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec │ ├── ProjectRetargeting-ClearReinstallationFlagUponPackageReinstallation │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec │ ├── ProjectRetargeting-ClearWarningUponCleanProject │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec │ ├── ProjectRetargeting-ClearWarningUponCloseSolution │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec │ ├── ProjectRetargeting-ClearWarningUponPackageReinstallationAndBuild │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec │ ├── ProjectRetargeting-ConvertBuildErrorToBuildWarningUponBuild │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec │ ├── ProjectRetargeting-ShowErrorUponRetargeting │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec │ ├── ProjectRetargeting-ShowWarningOnCleanBuild │ │ └── PackageTargetingNet40AndNet40Client.1.0.0.nuspec │ ├── ReinstallAllPackagesInAProjectInvokeUninstallAndInstallScripts │ │ ├── MagicPackage.1.0.0.nuspec │ │ ├── TestReinstallPackageScripts.1.0.0.nuspec │ │ └── files │ │ │ ├── MagicPackage.1.0.0 │ │ │ └── tools │ │ │ │ ├── install.ps1 │ │ │ │ └── uninstall.ps1 │ │ │ └── TestReinstallPackageScripts.1.0.0 │ │ │ └── tools │ │ │ ├── install.ps1 │ │ │ └── uninstall.ps1 │ ├── ReinstallAllPackagesInAllProjectsInvokeUninstallAndInstallScripts │ │ ├── MagicPackage.1.0.0.nuspec │ │ ├── TestReinstallPackageScripts.1.0.0.nuspec │ │ └── files │ │ │ ├── MagicPackage.1.0.0 │ │ │ └── tools │ │ │ │ ├── install.ps1 │ │ │ │ └── uninstall.ps1 │ │ │ └── TestReinstallPackageScripts.1.0.0 │ │ │ └── tools │ │ │ ├── install.ps1 │ │ │ └── uninstall.ps1 │ ├── ReinstallPackageInAllProjectsInvokeUninstallAndInstallScripts │ │ ├── TestReinstallPackageScripts.1.0.0.nuspec │ │ └── files │ │ │ └── TestReinstallPackageScripts.1.0.0 │ │ │ └── tools │ │ │ ├── install.ps1 │ │ │ └── uninstall.ps1 │ ├── ReinstallPackageInvokeUninstallAndInstallScripts │ │ ├── TestReinstallPackageScripts.1.0.0.nuspec │ │ └── files │ │ │ └── TestReinstallPackageScripts.1.0.0 │ │ │ └── tools │ │ │ ├── install.ps1 │ │ │ └── uninstall.ps1 │ ├── ReinstallPackageReinstallPrereleaseDependencyPackages │ │ ├── A.1.0.0.nuspec │ │ └── B.2.0.0-beta.nuspec │ ├── ReleaseNotesPackage.2.0.nupkg │ ├── SimpleBindingRedirects │ │ └── BindingRedirectsGraph.dgml │ ├── SimpleBindingRedirectsClassLibraryReference │ │ └── BindingRedirectsGraph.dgml │ ├── SimpleBindingRedirectsClassLibraryUpdatePackage │ │ └── BindingRedirectsGraph.dgml │ ├── SimpleBindingRedirectsIndirectReference │ │ └── BindingRedirectsGraph.dgml │ ├── SimpleBindingRedirectsNonWeb │ │ └── BindingRedirectsGraph.dgml │ ├── SimpleBindingRedirectsWebsite │ │ └── BindingRedirectsGraph.dgml │ ├── SimpleFSharpUninstall │ │ └── Ninject.1.1.nuspec │ ├── SkypePackage.1.0.nupkg │ ├── SkypePackage.3.0.nupkg │ ├── SolutionLevelPkg.1.0.0.nupkg │ ├── SolutionOnlyPackage.1.0.nupkg │ ├── SolutionOnlyPackage.2.0.nupkg │ ├── SubTreeUpdateWithConflict │ │ └── SubTreeUpdateWithConflict.dgml │ ├── SubTreeUpdateWithDependencyInUse │ │ └── SubTreeUpdateWithDependencyInUse.dgml │ ├── TabExpansionForPrereleasePackages │ │ └── MyPackage.1.0.0-alpha.nupkg │ ├── TabExpansionForUpdatePackageShowSuggestionsForCustomSource │ │ └── jQuery.1.5.nuspec │ ├── TestUninstallThrowPackage.1.0.nupkg │ ├── TestUpdatePackage.1.0.1.nupkg │ ├── TestUpdatePackage.1.0.nupkg │ ├── TestUpdatePackage.2.0.nupkg │ ├── TestUpdateSecondPackage.1.0.nupkg │ ├── TestUpdateSecondPackage.2.0.nupkg │ ├── ToolsPathForInitAndInstallScriptPointToToolsFolder │ │ ├── PackageA.1.0.0.nuspec │ │ └── files │ │ │ └── PackageA.1.0.0 │ │ │ └── tools │ │ │ ├── init.ps1 │ │ │ └── net40 │ │ │ └── install.ps1 │ ├── ToolsPathForUninstallScriptPointToToolsFolder │ │ ├── PackageA.1.0.0.nuspec │ │ └── files │ │ │ └── PackageA.1.0.0 │ │ │ └── tools │ │ │ └── sl4 │ │ │ └── uninstall.ps1 │ ├── TwoUnknownFramework.1.0.0.nupkg │ ├── UnInstallPackageWithXdtTransformUnTransformsTheFile │ │ ├── XdtPackage.1.0.0.nuspec │ │ └── files │ │ │ └── XdtPackage.1.0.0 │ │ │ └── content │ │ │ ├── web.config.install.xdt │ │ │ └── web.config.uninstall.xdt │ ├── UninstallAmbiguousProjectLevelPackageFromSolutionLevel │ │ ├── Antlr.3.1.1.nuspec │ │ └── Antlr.3.1.3.42154.nuspec │ ├── UninstallPackageAfterRenaming │ │ └── NestedFolders.1.0.nuspec │ ├── UninstallPackageHonorPackageReferencesAccordingToProjectFramework │ │ ├── mars.nuspec │ │ └── natal.nuspec │ ├── UninstallPackageRemoveImportStatement │ │ ├── PackageWithImport.2.0.0.nuspec │ │ └── files │ │ │ └── PackageWithImport.2.0.0 │ │ │ └── build │ │ │ ├── PackageWithImport.props │ │ │ └── PackageWithImport.targets │ ├── UninstallPackageUseTargetFxPersistedInPackagesConfigToInvokeUninstallScript │ │ ├── PackageA.1.0.0.nuspec │ │ └── files │ │ │ └── PackageA.1.0.0 │ │ │ └── tools │ │ │ ├── net35 │ │ │ └── uninstall.ps1 │ │ │ └── net40 │ │ │ ├── install.ps1 │ │ │ └── uninstall.ps1 │ ├── UninstallPackageUseTargetFxPersistedInPackagesConfigToRemoveAssemblies │ │ ├── PackageA.1.0.0.nuspec │ │ └── PackageB.1.0.0.nuspec │ ├── UninstallPackageUseTargetFxPersistedInPackagesConfigToRemoveContentFiles │ │ ├── PackageA.1.0.0.nuspec │ │ └── PackageB.1.0.0.nuspec │ ├── UninstallPackageWithNestedContentFiles │ │ └── NestedFolders.1.0.nuspec │ ├── UninstallSatellitePackageDoNotRemoveCollidingRuntimeFilesWhenContentsDiffer │ │ ├── PackageWithStrongNamedLib.1.1.nuspec │ │ ├── PackageWithStrongNamedLib.ja-jp.1.0.nuspec │ │ └── files │ │ │ └── PackageWithStrongNamedLib.1.1 │ │ │ └── lib │ │ │ └── ja-jp │ │ │ └── collision-differences.txt │ ├── UninstallSatellitePackageDoRemoveCollidingRuntimeFilesWhenContentsMatch │ │ ├── PackageWithStrongNamedLib.1.1.nuspec │ │ ├── PackageWithStrongNamedLib.ja-jp.1.0.nuspec │ │ └── files │ │ │ └── PackageWithStrongNamedLib.ja-jp.1.0 │ │ │ ├── RootFile.txt │ │ │ └── content │ │ │ ├── ja-jp.txt │ │ │ └── ja-jp │ │ │ └── file.txt │ ├── UninstallSatelliteThenRuntimeRemoveCollidingRuntimeFilesWhenContentsDiffer │ │ ├── PackageWithStrongNamedLib.1.1.nuspec │ │ └── PackageWithStrongNamedLib.ja-jp.1.0.nuspec │ ├── UninstallSpecificPackageThrowsIfNotInstalledInProject │ │ ├── Antlr.3.1.1.nuspec │ │ └── Antlr.3.1.3.42154.nuspec │ ├── UninstallSpecificVersionOfPackage │ │ ├── Antlr.3.1.1.nuspec │ │ └── Antlr.3.1.3.42154.nuspec │ ├── UninstallingSatellitePackageRemovesFilesFromRuntimePackageFolder │ │ ├── PackageWithStrongNamedLib.1.1.nuspec │ │ └── PackageWithStrongNamedLib.ja-jp.1.0.nuspec │ ├── UpdateAllPackagesInASingleProjectWithMultipleProjects │ │ ├── jQuery.1.5.1.nuspec │ │ ├── jQuery.1.5.2.nuspec │ │ ├── jQuery.1.6.1.nuspec │ │ ├── jQuery.UI.Combined.1.8.11.nuspec │ │ └── jQuery.UI.Combined.1.8.13.nuspec │ ├── UpdateAllPackagesInASingleProjectWithSafeFlagAndMultipleProjects │ │ ├── jQuery.1.5.1.nuspec │ │ ├── jQuery.1.5.2.nuspec │ │ ├── jQuery.1.6.1.nuspec │ │ ├── jQuery.UI.Combined.1.8.11.nuspec │ │ └── jQuery.UI.Combined.1.8.13.nuspec │ ├── UpdateAllPackagesInSolution │ │ └── UpdateAllPackagesInSolution.dgml │ ├── UpdateAllPackagesInSolutionWithSafeFlag │ │ └── UpdateAllPackagesInSolutionWithSafeFlag.dgml │ ├── UpdateAmbiguousProjectLevelPackageNoInstalledInProjectThrows │ │ ├── Antlr.3.1.1.nuspec │ │ └── Antlr.3.1.3.42154.nuspec │ ├── UpdatePackageAcceptsRelativePathSource │ │ └── SkypePackage.2.0.nupkg │ ├── UpdatePackageAcceptsRelativePathSource2 │ │ └── empty.txt │ ├── UpdatePackageDiamondDependenciesBottomNodeConflictingPackages │ │ └── UpdatePackageDiamondDependenciesBottomNodeConflictingPackages.dgml │ ├── UpdatePackageInAllProjects │ │ └── UpdatePackageInAllProjects.dgml │ ├── UpdatePackageInOneProjectDoesNotCheckAllPackagesInSolution │ │ └── jQuery.1.5.1.nuspec │ ├── UpdatePackageInstallCorrectDependencyPackageBasedOnTargetFramework │ │ ├── TestDependencyTargetFramework.1.0.0.nuspec │ │ ├── TestDependencyTargetFramework.2.0.0.nuspec │ │ ├── TestEmptyContentFolder.1.0.0.nuspec │ │ ├── TestEmptyLibFolder.1.0.0.nuspec │ │ └── TestEmptyToolsFolder.1.0.0.nuspec │ ├── UpdatePackageThrowsIfMinClientVersionIsNotSatisfied │ │ ├── kitty.1.0.0.nuspec │ │ └── kitty.2.0.0.nuspec │ ├── UpdatePackageWithDependentsThatHaveNoAvailableUpdatesThrows │ │ └── UpdatePackageWithDependentsThatHaveNoAvailableUpdatesThrows.dgml │ ├── UpdatePackageWithOlderVersionOfSharedDependencyInUse │ │ └── UpdatePackageWithOlderVersionOfSharedDependencyInUse.dgml │ ├── UpdatePackageWithSafeFlag │ │ └── UpdatePackageWithSafeFlag.dgml │ ├── UpdateScenariosWithConstraints │ │ └── UpdateScenariosWithConstraints.dgml │ ├── UpdatingDependentPackagesPicksLowestCompatiblePackages │ │ └── UpdatingDependentPackagesPicksLowestCompatiblePackages.dgml │ ├── UpdatingMetaPackageRemovesSatelliteReferences │ │ ├── A.1.0.0.nuspec │ │ ├── A.2.0.0.nuspec │ │ ├── A.es.1.0.0.nuspec │ │ ├── A.es.2.0.0.nuspec │ │ ├── A.fr.1.0.0.nuspec │ │ ├── A.fr.2.0.0.nuspec │ │ ├── A.localized.1.0.0.nuspec │ │ └── A.localized.2.0.0.nuspec │ ├── UpdatingPackageWhatIf │ │ └── UpdatingPackageWithSharedDependency.dgml │ ├── UpdatingPackageWithSharedDependency │ │ └── UpdatingPackageWithSharedDependency.dgml │ ├── UpdatingPackageWithSharedDependencySimple │ │ └── UpdatingPackageWithSharedDependency.dgml │ ├── UpdatingPackagesWithDependenciesOnSatellitePackages │ │ ├── Localized.1.0.nuspec │ │ ├── Localized.2.0.nuspec │ │ ├── Localized.LangPack.1.0.nuspec │ │ ├── Localized.LangPack.2.0.nuspec │ │ ├── Localized.fr-FR.1.0.nuspec │ │ ├── Localized.fr-FR.2.0.nuspec │ │ ├── Localized.ja-JP.1.0.nuspec │ │ └── Localized.ja-JP.2.0.nuspec │ ├── UpdatingSatellitePackageUpdatesReferences │ │ ├── Localized.1.0.nuspec │ │ ├── Localized.2.0.nuspec │ │ ├── Localized.fr-FR.1.0.nuspec │ │ └── Localized.fr-FR.2.0.nuspec │ ├── UpdatingSatellitePackageWhenMultipleVersionsInstalled │ │ ├── DependsOnLocalized.1.0.nuspec │ │ ├── DependsOnLocalized.2.0.nuspec │ │ ├── Localized.1.0.nuspec │ │ ├── Localized.2.0.nuspec │ │ ├── Localized.3.0.nuspec │ │ ├── Localized.fr-FR.1.0.nuspec │ │ ├── Localized.fr-FR.2.0.nuspec │ │ └── Localized.fr-FR.3.0.nuspec │ ├── VsPackageInstallerEvents │ │ └── jQuery.1.5.nuspec │ ├── VsPackageInstallerServices │ │ └── jQuery.1.5.nuspec │ ├── WebSiteSimpleUninstall │ │ └── MyAwesomeLibrary.1.0.nuspec │ ├── WebsiteSimpleInstall │ │ └── MyAwesomeLibrary.1.0.nuspec │ ├── coolpackage.nuspec │ ├── netfx-Guard.1.2.0.0.nupkg │ └── secondpackage.nuspec ├── ProjectTemplates │ ├── ClassLibrary.zip │ │ ├── assemblyinfo.cs │ │ ├── class1.cs │ │ ├── classlibrary.csproj │ │ └── csClassLibrary.vstemplate │ ├── ConsoleApplication.zip │ │ ├── App.config │ │ ├── assemblyinfo.cs │ │ ├── consoleapplication.csproj │ │ ├── csConsoleApplication.vstemplate │ │ └── program.cs │ ├── CppWinStoreApplication.zip │ │ ├── App.xaml │ │ ├── App.xaml.cpp │ │ ├── App.xaml.h │ │ ├── Application.vcxproj │ │ ├── Application.vcxproj.filters │ │ ├── Application_TemporaryKey.pfx │ │ ├── BindableBase.cpp │ │ ├── BindableBase.h │ │ ├── BlankApp.png │ │ ├── BlankApplication.vstemplate │ │ ├── BooleanNegationConverter.cpp │ │ ├── BooleanNegationConverter.h │ │ ├── BooleanToVisibilityConverter.cpp │ │ ├── BooleanToVisibilityConverter.h │ │ ├── LayoutAwarePage.cpp │ │ ├── LayoutAwarePage.h │ │ ├── Logo.png │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cpp │ │ ├── MainPage.xaml.h │ │ ├── Package-native.appxmanifest │ │ ├── ReadMe.txt │ │ ├── RichTextColumns.cpp │ │ ├── RichTextColumns.h │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ ├── StandardStyles.xaml │ │ ├── StoreLogo.png │ │ ├── SuspensionManager.cpp │ │ ├── SuspensionManager.h │ │ ├── pch.cpp │ │ └── pch.h │ ├── CppWinStoreApplicationBlue.zip │ │ ├── App.xaml │ │ ├── App.xaml.cpp │ │ ├── App.xaml.h │ │ ├── Application.vcxproj │ │ ├── Application.vcxproj.filters │ │ ├── Application_TemporaryKey.pfx │ │ ├── BindableBase.cpp │ │ ├── BindableBase.h │ │ ├── BlankApp.png │ │ ├── BlankApplication.vstemplate │ │ ├── BooleanNegationConverter.cpp │ │ ├── BooleanNegationConverter.h │ │ ├── BooleanToVisibilityConverter.cpp │ │ ├── BooleanToVisibilityConverter.h │ │ ├── LayoutAwarePage.cpp │ │ ├── LayoutAwarePage.h │ │ ├── Logo.png │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cpp │ │ ├── MainPage.xaml.h │ │ ├── Package-native.appxmanifest │ │ ├── ReadMe.txt │ │ ├── RichTextColumns.cpp │ │ ├── RichTextColumns.h │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ ├── StandardStyles.xaml │ │ ├── StoreLogo.png │ │ ├── SuspensionManager.cpp │ │ ├── SuspensionManager.h │ │ ├── pch.cpp │ │ └── pch.h │ ├── CppWinStoreApplication_Dev14.zip │ │ ├── App.xaml │ │ ├── App.xaml.cpp │ │ ├── App.xaml.h │ │ ├── Application.vcxproj │ │ ├── Application.vcxproj.filters │ │ ├── Application_TemporaryKey.pfx │ │ ├── BindableBase.cpp │ │ ├── BindableBase.h │ │ ├── BlankApp.png │ │ ├── BlankApplication.vstemplate │ │ ├── BooleanNegationConverter.cpp │ │ ├── BooleanNegationConverter.h │ │ ├── BooleanToVisibilityConverter.cpp │ │ ├── BooleanToVisibilityConverter.h │ │ ├── LayoutAwarePage.cpp │ │ ├── LayoutAwarePage.h │ │ ├── Logo.png │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cpp │ │ ├── MainPage.xaml.h │ │ ├── Package-native.appxmanifest │ │ ├── ReadMe.txt │ │ ├── RichTextColumns.cpp │ │ ├── RichTextColumns.h │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ ├── StandardStyles.xaml │ │ ├── StoreLogo.png │ │ ├── SuspensionManager.cpp │ │ ├── SuspensionManager.h │ │ ├── pch.cpp │ │ └── pch.h │ ├── EmptyMvcWebApplicationProjectTemplatev2.0.cs.zip │ │ ├── Content │ │ │ └── Site.css │ │ ├── EmptyMvcApplication.csproj │ │ ├── EmptyMvcWebApplicationProjectTemplate.cs.vstemplate │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ │ ├── MicrosoftAjax.debug.js │ │ │ ├── MicrosoftAjax.js │ │ │ ├── MicrosoftMvcAjax.debug.js │ │ │ ├── MicrosoftMvcAjax.js │ │ │ ├── MicrosoftMvcValidation.debug.js │ │ │ ├── MicrosoftMvcValidation.js │ │ │ ├── jquery-1.4.1-vsdoc.js │ │ │ ├── jquery-1.4.1.js │ │ │ ├── jquery-1.4.1.min.js │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ ├── Views │ │ │ └── Web.config │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ └── Web.config │ ├── EmptyMvcWebApplicationProjectTemplatev4.0.csaspx.zip │ │ ├── App_Start │ │ │ ├── FilterConfig.cs │ │ │ ├── RouteConfig.cs │ │ │ └── WebApiConfig.cs │ │ ├── EmptyGlobal.asax.cs │ │ ├── EmptyMvcApplication.csproj │ │ ├── EmptyMvcWebApplicationProjectTemplate.11.csaspx.vstemplate │ │ ├── EmptyWeb.config │ │ ├── Global.asax │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Views │ │ │ └── EmptyWeb.config │ │ ├── Web.Debug.config │ │ └── Web.Release.config │ ├── EmptyProject.zip │ │ ├── App.config │ │ ├── csEmptyProject.vstemplate │ │ └── emptyproject.csproj │ ├── EmptyWeb.zip │ │ ├── EmptyWeb.vstemplate │ │ ├── EmptyWeb.webproj │ │ └── Web.Config │ ├── EmptyWebApplicationProject40.zip │ │ ├── EmptyWebApplicationProject40.vstemplate │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ └── WebApplication.csproj │ ├── FSharpConsoleApplication.zip │ │ ├── App.config │ │ ├── ConsoleApplication.fsproj │ │ ├── Program.fs │ │ └── fsConsoleApplication.vstemplate │ ├── FSharpLibrary.zip │ │ ├── Library.fsproj │ │ ├── Module1.fs │ │ ├── Script.fsx │ │ └── fsLibrary.vstemplate │ ├── JScriptVisualBasicLightSwitchProjectTemplate.zip │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── Client.jsproj │ │ ├── Client.lsml │ │ ├── Client.packages.config │ │ ├── Content.Web.config │ │ ├── LightSwitchProject.lsxproj │ │ ├── LightSwitchProject.vstemplate │ │ ├── Proxies.lsml │ │ ├── Server.AssemblyInfo.vb │ │ ├── Server.packages.config │ │ ├── Server.vbproj │ │ ├── Service.lsml │ │ ├── ServiceConfiguration.cscfg │ │ ├── ServiceDefinition.csdef │ │ ├── Settings.Designer.vb │ │ ├── Settings.settings │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── ajax-loader.gif │ │ ├── dark-theme-2.0.0.css │ │ ├── datajs-1.1.0.js │ │ ├── datajs-1.1.0.min.js │ │ ├── default.dbg.htm │ │ ├── default.htm │ │ ├── icons-18-black.png │ │ ├── icons-18-white.png │ │ ├── icons-36-black.png │ │ ├── icons-36-white.png │ │ ├── jquery-1.9.1.intellisense.js │ │ ├── jquery-1.9.1.js │ │ ├── jquery-1.9.1.min.js │ │ ├── jquery.mobile-1.3.0-vsdoc.js │ │ ├── jquery.mobile-1.3.0.css │ │ ├── jquery.mobile-1.3.0.js │ │ ├── jquery.mobile-1.3.0.min.css │ │ ├── jquery.mobile-1.3.0.min.js │ │ ├── jquery.mobile.structure-1.3.0.css │ │ ├── jquery.mobile.structure-1.3.0.min.css │ │ ├── jquery.mobile.theme-1.3.0.css │ │ ├── jquery.mobile.theme-1.3.0.min.css │ │ ├── light-theme-2.0.0.css │ │ ├── msls-2.0.0-vsdoc.js │ │ ├── msls-2.0.0.css │ │ ├── msls-2.0.0.js │ │ ├── msls-2.0.0.min.css │ │ ├── msls-2.0.0.min.js │ │ ├── msls-black-icons-18.png │ │ ├── msls-black-icons-36.png │ │ ├── msls-dark-2.0.0.css │ │ ├── msls-light-2.0.0.css │ │ ├── msls-loader-dark.gif │ │ ├── msls-loader-light.gif │ │ ├── msls-white-icons-18.png │ │ ├── msls-white-icons-36.png │ │ ├── msls.js │ │ ├── user-customization.css │ │ ├── user-logo.png │ │ ├── user-splash-screen.png │ │ ├── winjs-1.0.js │ │ └── winjs-1.0.min.js │ ├── PortableClassLibrary.zip │ │ ├── PortableClassLibrary.csproj │ │ ├── assemblyinfo.cs │ │ ├── class1.cs │ │ └── csPortableClassLibrary.vstemplate │ ├── PortableLib.zip │ │ ├── Class1.cs │ │ ├── MyTemplate.vstemplate │ │ ├── PortableLib.csproj │ │ └── __TemplateIcon.ico │ ├── SilverlightClassLibrary.zip │ │ ├── Class1.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SilverlightClassLibrary.csproj │ │ └── SilverlightClassLibrary.vstemplate │ ├── SilverlightProject.zip │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Page.xaml │ │ ├── Page.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── SilverlightProject.csproj │ │ └── SilverlightProject.vstemplate │ ├── VBConsoleApplication.zip │ │ ├── App.config │ │ ├── Module1.vb │ │ ├── MyApplication.Designer.vb │ │ ├── MyApplication.myapp │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ ├── Settings.settings │ │ ├── assemblyinfo.vb │ │ ├── consoleapplication.vbproj │ │ └── consoleapplication.vstemplate │ ├── WPFApplication.zip │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ ├── WPFApplication.csproj │ │ └── csWPFApplication.vstemplate │ ├── WebApplicationProject20.zip │ │ ├── Default.aspx │ │ ├── Default.aspx.cs │ │ ├── Default.aspx.designer.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ │ ├── jquery-1.4.1-vsdoc.js │ │ │ ├── jquery-1.4.1.js │ │ │ └── jquery-1.4.1.min.js │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── WebApplication.csproj │ │ └── WebApplicationProject20.vstemplate │ ├── WebApplicationProject40.zip │ │ ├── About.aspx │ │ ├── About.aspx.cs │ │ ├── About.aspx.designer.cs │ │ ├── Account │ │ │ ├── ChangePassword.aspx │ │ │ ├── ChangePassword.aspx.cs │ │ │ ├── ChangePassword.aspx.designer.cs │ │ │ ├── ChangePasswordSuccess.aspx │ │ │ ├── ChangePasswordSuccess.aspx.cs │ │ │ ├── ChangePasswordSuccess.aspx.designer.cs │ │ │ ├── Login.aspx │ │ │ ├── Login.aspx.cs │ │ │ ├── Login.aspx.designer.cs │ │ │ ├── Register.aspx │ │ │ ├── Register.aspx.cs │ │ │ ├── Register.aspx.designer.cs │ │ │ └── Web.config │ │ ├── Default.aspx │ │ ├── Default.aspx.cs │ │ ├── Default.aspx.designer.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ │ ├── jquery-1.4.1-vsdoc.js │ │ │ ├── jquery-1.4.1.js │ │ │ └── jquery-1.4.1.min.js │ │ ├── Site.Master │ │ ├── Site.Master.cs │ │ ├── Site.Master.designer.cs │ │ ├── Styles │ │ │ └── Site.css │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── WebApplication.csproj │ │ └── WebApplicationProject40.vstemplate │ ├── WinJS.zip │ │ ├── Application.jsproj │ │ ├── Application_TemporaryKey.pfx │ │ ├── blankwj.ico │ │ ├── blankwj.png │ │ ├── blankwj.vstemplate │ │ ├── default.css │ │ ├── default.html │ │ ├── default.js │ │ ├── logo@scale-1x.png │ │ ├── package.appxmanifest │ │ ├── smalllogo@scale-1x.png │ │ ├── splashscreen@scale-1x.png │ │ └── storelogo@scale-1x.png │ ├── WinJS_Dev14.zip │ │ ├── Application.jsproj │ │ ├── Application_TemporaryKey.pfx │ │ ├── blankwj.ico │ │ ├── blankwj.png │ │ ├── blankwj.vstemplate │ │ ├── default.css │ │ ├── default.html │ │ ├── default.js │ │ ├── logo@scale-1x.png │ │ ├── package.appxmanifest │ │ ├── smalllogo@scale-1x.png │ │ ├── splashscreen@scale-1x.png │ │ └── storelogo@scale-1x.png │ ├── WinJsBlue.zip │ │ ├── Application.jsproj │ │ ├── Application_TemporaryKey.pfx │ │ ├── blankwj.ico │ │ ├── blankwj.png │ │ ├── blankwj.vstemplate │ │ ├── default.css │ │ ├── default.html │ │ ├── default.js │ │ ├── logo@scale-1x.png │ │ ├── package.appxmanifest │ │ ├── smalllogo@scale-1x.png │ │ ├── splashscreen@scale-1x.png │ │ └── storelogo@scale-1x.png │ ├── WindowsApplication.zip │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ ├── assemblyinfo.cs │ │ ├── csWindowsApplication.vstemplate │ │ ├── form1.cs │ │ ├── form1.designer.cs │ │ └── windowsapplication.csproj │ ├── WindowsPhoneApp81JS.zip │ │ ├── MyTemplate.vstemplate │ │ ├── WindowsPhoneAppJS81.jsproj │ │ ├── __TemplateIcon.ico │ │ ├── default.html │ │ ├── default.js │ │ └── package.appxmanifest │ └── WindowsPhoneClassLibrary.zip │ │ ├── __templateicon.ico │ │ ├── class1.cs │ │ ├── properties │ │ └── assemblyinfo.cs │ │ ├── windowsphoneclasslibrary.csproj │ │ └── windowsphoneclasslibrary.vstemplate ├── assert.ps1 ├── nuget.assert.ps1 ├── tests │ ├── GetPackageTest.ps1 │ ├── GetProjectTest.ps1 │ ├── OpenPackagePageTest.ps1 │ ├── PackTest.ps1 │ ├── PackageRestoreExtensionTest.ps1 │ ├── PackageRestoreManagerTest.ps1 │ ├── ProjectRetargeting.ps1 │ ├── ServicesTest.ps1 │ ├── Settings.ps1 │ ├── TabExpansionTest.ps1 │ ├── install.ps1 │ ├── uninstall.ps1 │ └── update.ps1 ├── utility.ps1 └── vs.ps1 ├── PowerShellCmdlets.Test ├── CmdletExtensions.cs ├── FindPackageCommandTest.cs ├── GetPackageCommandTest.cs ├── GetPackageIdCommandTest.cs ├── GetPackageVersionCommandTest.cs ├── GetProjectCommandTest.cs ├── InstallPackageCommandTest.cs ├── MockCommandRuntime.cs ├── MockProductUpdateService.cs ├── PSPathTranslationTests.cs ├── PowerShellCmdlets.Test.csproj ├── Properties │ └── AssemblyInfo.cs ├── UninstallPackageCommandTest.cs ├── UpdatePackageCommandTest.cs └── packages.config ├── PowerShellHost.Test ├── CommandExpansionTest.cs ├── CommandParserTest.cs ├── InteractiveHelper.cs ├── KeyProcessingTest.cs ├── PowerShellHost.Test.csproj ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── Server.Test ├── FeedPackageTest.cs ├── HelpersTest.cs ├── PackageAuthenticationServiceTests.cs ├── PackageSvcFacts.cs ├── Properties │ └── AssemblyInfo.cs ├── Server.Test.csproj ├── ServerPackageRepositoryTest.cs └── packages.config ├── TeamFoundationServer.Test ├── Properties │ └── AssemblyInfo.cs ├── TeamFoundationServer.Test.csproj ├── TfsFileSystemTest.cs ├── TfsPendingChangeWrapperTest.cs ├── TfsWorkspaceWrapperTest.cs └── packages.config ├── Test.Integration ├── CommandRunner.cs ├── Core │ ├── LocalPackageRepositoryTest.cs │ └── PathResolverTest.cs ├── MockServer.cs ├── MockServerResource.Designer.cs ├── MockServerResource.resx ├── NuGetCommandLine │ ├── DefaultConfigurationFilePreserver.cs │ ├── NuGetCommandLineTest.cs │ ├── NuGetConfigCommandTest.cs │ ├── NuGetDeleteCommandTest.cs │ ├── NuGetHelpCommandTest.cs │ ├── NuGetInstallCommandTest.cs │ ├── NuGetListCommandTest.cs │ ├── NuGetPackCommandTest.cs │ ├── NuGetPushCommandTest.cs │ ├── NuGetRestoreCommandTest.cs │ ├── NuGetSourcesCommandTest.cs │ ├── NuSpecFileContext.cs │ ├── NugetProgramStatic.cs │ ├── PackageCreator.cs │ ├── ProjectFactoryTest.cs │ └── Util.cs ├── Properties │ └── AssemblyInfo.cs ├── Test.Integration.csproj └── packages.config ├── Test.Utility ├── Capture.cs ├── ExceptionAssert.cs ├── Mocks │ ├── EventMemoryStream.cs │ ├── MockFileSystem.cs │ ├── MockPackageCacheRepository.cs │ ├── MockPackageRepository.cs │ ├── MockProjectSystem.cs │ ├── MockServiceBasePackageRepository.cs │ └── MockSharedPackageRepository.cs ├── PackageUtility.cs ├── PathFixUtility.cs ├── Properties │ └── AssemblyInfo.cs ├── Test.Utility.csproj └── packages.config ├── TestUI ├── MockPackageSourceProvider.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── TestForm.Designer.cs ├── TestForm.cs ├── TestForm.resx ├── TestUI.csproj └── app.config ├── VisualStudio.Test ├── DeleteOnRestartManagerTest.cs ├── FallbackRepositoryTest.cs ├── FrameworkAssemblyResolverTest.cs ├── JsProjectSystemTest.cs ├── MockProjectPackageRepository.cs ├── Mocks │ ├── MockDteProperties.cs │ ├── MockIVsTrackProjectDocuments.cs │ ├── MockPackageSourceProvider.cs │ ├── MockProjects.cs │ └── MockSolutionManager.cs ├── PackageExtensionsTest.cs ├── PackageRestoreManagerTest.cs ├── PackageRestoreRepositoryTest.cs ├── PathHelperTest.cs ├── ProjectExtensionsTest.cs ├── ProjectSystemExtensionsTest.cs ├── Properties │ └── AssemblyInfo.cs ├── RepositorySettingsTest.cs ├── SolutionManagerTest.cs ├── SourceControlHelperTest.cs ├── TestUtils.cs ├── TestVsWebsiteHandler.cs ├── UriHelperTest.cs ├── VisualStudio.Test.csproj ├── VsFileSystemProviderTest.cs ├── VsInstallerTest.cs ├── VsPackageManagerTest.Operation.cs ├── VsPackageManagerTest.Reinstall.cs ├── VsPackageManagerTest.cs ├── VsPackageSourceProviderTest.cs ├── VsPackageSourceRepositoryTest.cs ├── VsProjectSystemTest.cs ├── VsSettingsTest.cs ├── VsSourceControlTrackerTest.cs ├── VsTemplateWizardTest.cs ├── VsUninstallerTest.cs ├── VsUtilityTest.cs ├── WebProjectSystemTest.cs ├── WindowsStoreProjectSystemTest.cs └── packages.config ├── VisualStudio11.Test ├── Properties │ └── AssemblyInfo.cs ├── QuickSearch │ ├── NuGetSearchProviderTest.cs │ ├── NuGetStaticSearchResultTest.cs │ └── NugetSearchTaskTest.cs ├── VisualStudio11.Test.csproj └── packages.config └── VsEvents.Test ├── ProjectRetargetingUtilityTest.cs ├── Properties └── AssemblyInfo.cs ├── VsEvents.Test.csproj └── packages.config /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "xdt"] 2 | path = xdt 3 | url = https://git01.codeplex.com/xdt 4 | [submodule "NuGet.Client"] 5 | path = NuGet.Client 6 | url = https://github.com/NuGet/NuGet.Client.git 7 | branch = dev 8 | -------------------------------------------------------------------------------- /Build/ilmerge.internalize.ignore.txt: -------------------------------------------------------------------------------- 1 | NuGet.* 2 | -------------------------------------------------------------------------------- /Common/GlobalSuppressions.cs: -------------------------------------------------------------------------------- 1 | [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA2210:AssembliesShouldHaveValidStrongNames", Justification = "Assembly is delay-signed")] 2 | [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1701:ResourceStringCompoundWordsShouldBeCasedCorrectly", MessageId = "nuget", Scope = "resource", Target = "NuGet.VisualStudio11.Resources.resources")] 3 | -------------------------------------------------------------------------------- /FxCop/Microsoft.PowerShell.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/FxCop/Microsoft.PowerShell.CodeAnalysis.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NuGet2 2 | This is the home of nuget.core and all the repos from codeplex. 3 | 4 | # Open Source Code of Conduct 5 | This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. 6 | -------------------------------------------------------------------------------- /Tools/7za920/7-zip.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/Tools/7za920/7-zip.chm -------------------------------------------------------------------------------- /Tools/7za920/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/Tools/7za920/7za.exe -------------------------------------------------------------------------------- /Tools/ILMerge/ILMerge.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/Tools/ILMerge/ILMerge.doc -------------------------------------------------------------------------------- /Tools/ILMerge/ILMerge.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/Tools/ILMerge/ILMerge.exe -------------------------------------------------------------------------------- /Tools/ILMerge/ILMerge.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/Tools/ILMerge/ILMerge.msi -------------------------------------------------------------------------------- /Tools/NuGet/GenerateTestPackages/AssemblySourceFileGenerator_Partial.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace GenerateTestPackages { 7 | partial class AssemblySourceFileGenerator { 8 | internal PackageInfo Package { get; set; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Tools/NuGet/GenerateTestPackages/TestPackageKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/Tools/NuGet/GenerateTestPackages/TestPackageKey.snk -------------------------------------------------------------------------------- /Tools/NuGet/GenerateTestPackages/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Tools/NuGet/Microsoft.VisualStudio.Project.V11Only/ConfiguredProject.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace Microsoft.VisualStudio.Project 3 | { 4 | public interface ConfiguredProject 5 | { 6 | } 7 | } -------------------------------------------------------------------------------- /Tools/NuGet/Microsoft.VisualStudio.Project.V11Only/IDirectAccess.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace Microsoft.VisualStudio.Project 3 | { 4 | public interface IDirectAccess 5 | { 6 | ProjectAccess ProjectAccess { get; } 7 | Microsoft.Build.Evaluation.Project GetProject(ConfiguredProject configuredProject); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Tools/NuGet/Microsoft.VisualStudio.Project.V11Only/IDirectAccessService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Microsoft.VisualStudio.Project 4 | { 5 | public interface IDirectAccessService 6 | { 7 | void Write(string fileToWrite, Action action, ProjectAccess flags = ProjectAccess.None); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Tools/NuGet/Microsoft.VisualStudio.Project.V11Only/IDirectWriteAccess.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace Microsoft.VisualStudio.Project 3 | { 4 | public interface IDirectWriteAccess : IDirectAccess 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Tools/NuGet/Microsoft.VisualStudio.Project.V11Only/IProjectServices.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace Microsoft.VisualStudio.Project 3 | { 4 | public interface IProjectServices 5 | { 6 | IDirectAccessService DirectAccessService { get; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Tools/NuGet/Microsoft.VisualStudio.Project.V11Only/IUnconfiguredProjectServices.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace Microsoft.VisualStudio.Project 7 | { 8 | public interface IUnconfiguredProjectServices 9 | { 10 | ConfiguredProject SuggestedConfiguredProject { get; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Tools/NuGet/Microsoft.VisualStudio.Project.V11Only/IVsBrowseObjectContext.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace Microsoft.VisualStudio.Project.Designers 3 | { 4 | public interface IVsBrowseObjectContext 5 | { 6 | ConfiguredProject ConfiguredProject { get; } 7 | UnconfiguredProject UnconfiguredProject { get; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Tools/NuGet/Microsoft.VisualStudio.Project.V11Only/ProjectAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Microsoft.VisualStudio.Project 4 | { 5 | [Flags] 6 | public enum ProjectAccess 7 | { 8 | None = 0, 9 | Read = 1, 10 | Write = 3, 11 | UpgradeableRead = 5, 12 | LockMask = 7, 13 | SkipInitialEvaluation = 8, 14 | SuppressReevaluation = 16, 15 | StickyWrite = 37, 16 | OptionMask = 2147483640, 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Tools/NuGet/Microsoft.VisualStudio.Project.V11Only/ProjectService.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace Microsoft.VisualStudio.Project 3 | { 4 | public interface ProjectService 5 | { 6 | IProjectServices Services { get; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Tools/NuGet/Microsoft.VisualStudio.Project.V11Only/UnconfiguredProject.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.VisualStudio.Project 2 | { 3 | public interface UnconfiguredProject 4 | { 5 | ProjectService ProjectService { get; } 6 | string FullPath { get; set; } 7 | IUnconfiguredProjectServices Services { get; set; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Tools/NuGet/Microsoft.VisualStudio.Project.V11Only/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/Tools/NuGet/Microsoft.VisualStudio.Project.V11Only/key.snk -------------------------------------------------------------------------------- /Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer.UI/ProviderExpander.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace Microsoft.VisualStudio.ExtensionsExplorer.UI 7 | { 8 | public class ProviderExpander 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer.UI/SortCombo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace Microsoft.VisualStudio.ExtensionsExplorer.UI 7 | { 8 | public class SortCombo 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer.UI/mskey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer.UI/mskey.snk -------------------------------------------------------------------------------- /Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer.UI11/mskey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer.UI11/mskey.snk -------------------------------------------------------------------------------- /Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer/CancelProgressCallback.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.VisualStudio.ExtensionsExplorer 2 | { 3 | using System; 4 | using System.Runtime.CompilerServices; 5 | 6 | public delegate void CancelProgressCallback(); 7 | } 8 | 9 | -------------------------------------------------------------------------------- /Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer/IPropertySink.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.VisualStudio.ExtensionsExplorer 2 | { 3 | using System; 4 | using System.Collections.Generic; 5 | 6 | public interface IPropertySink 7 | { 8 | void SetProperties(IEnumerator> propertyBag); 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer/IVsExtensionsProviderSelectionCallback.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.VisualStudio.ExtensionsExplorer 2 | { 3 | using System; 4 | 5 | public interface IVsExtensionsProviderSelectionCallback 6 | { 7 | void NotifyNodeSelected(IVsExtensionsTreeNode node); 8 | } 9 | } 10 | 11 | -------------------------------------------------------------------------------- /Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer/IVsMessagePane.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.VisualStudio.ExtensionsExplorer 2 | { 3 | using System; 4 | using System.Windows; 5 | 6 | public interface IVsMessagePane 7 | { 8 | void Close(); 9 | void SetMessageThreadSafe(string message); 10 | void SetMessageThreadSafe(string message, string linkText, RoutedEventHandler linkTextClickHandler); 11 | bool Show(); 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer/IVsMessagePaneConsumer.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.VisualStudio.ExtensionsExplorer 2 | { 3 | using System; 4 | 5 | public interface IVsMessagePaneConsumer 6 | { 7 | void SetMessagePane(IVsMessagePane messagePane); 8 | } 9 | } 10 | 11 | -------------------------------------------------------------------------------- /Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer/IVsNoItemsMessageTreeNode.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.VisualStudio.ExtensionsExplorer 2 | { 3 | using System; 4 | 5 | public interface IVsNoItemsMessageTreeNode : IVsExtensionsTreeNode 6 | { 7 | string NoItemsMessage { get; } 8 | } 9 | } 10 | 11 | -------------------------------------------------------------------------------- /Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer/IVsPageDataSource.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.VisualStudio.ExtensionsExplorer 2 | { 3 | using System; 4 | 5 | public interface IVsPageDataSource 6 | { 7 | event EventHandler PageDataChanged; 8 | 9 | void LoadPage(int pageNumber); 10 | 11 | int CurrentPage { get; } 12 | 13 | int TotalPages { get; } 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer/IVsProgressPaneConsumer.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.VisualStudio.ExtensionsExplorer 2 | { 3 | using System; 4 | 5 | public interface IVsProgressPaneConsumer 6 | { 7 | void SetProgressPane(IVsProgressPane progressPane); 8 | } 9 | } 10 | 11 | -------------------------------------------------------------------------------- /Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer/IVsSearchScope.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.VisualStudio.ExtensionsExplorer 2 | { 3 | using System; 4 | 5 | public interface IVsSearchScope 6 | { 7 | string ScopeName { get; } 8 | } 9 | } 10 | 11 | -------------------------------------------------------------------------------- /Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer/IVsSortDataSource.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.VisualStudio.ExtensionsExplorer 2 | { 3 | using System; 4 | using System.Collections.Generic; 5 | 6 | public interface IVsSortDataSource 7 | { 8 | IList GetSortDescriptors(); 9 | bool SortSelectionChanged(IVsSortDescriptor selectedDescriptor); 10 | } 11 | } 12 | 13 | -------------------------------------------------------------------------------- /Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer/IVsSortDescriptor.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.VisualStudio.ExtensionsExplorer 2 | { 3 | using System; 4 | using System.Collections; 5 | 6 | public interface IVsSortDescriptor : IComparer 7 | { 8 | string Name { get; } 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer/ViewStyle.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.VisualStudio.ExtensionsExplorer 2 | { 3 | using System; 4 | 5 | public enum ViewStyle 6 | { 7 | SmallIcons, 8 | MediumIcons, 9 | LargeIcons 10 | } 11 | } 12 | 13 | -------------------------------------------------------------------------------- /Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer/mskey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer/mskey.snk -------------------------------------------------------------------------------- /Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer11/mskey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/Tools/NuGet/VisualStudioExtensions/ExtensionsExplorer11/mskey.snk -------------------------------------------------------------------------------- /Tools/NuGet/readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of tools that revolve around NuGet -------------------------------------------------------------------------------- /Tools/XUnit/xunit.runner.msbuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/Tools/XUnit/xunit.runner.msbuild.dll -------------------------------------------------------------------------------- /Tools/XUnit/xunit.runner.utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/Tools/XUnit/xunit.runner.utility.dll -------------------------------------------------------------------------------- /WebMatrixExtension/NuGetExtension.Tests/app.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /WebMatrixExtension/NuGetExtension.Tests/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WebMatrixExtension/NuGetExtension/Data/VirtualizingListPlaceholder.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet.WebMatrix.Data 2 | { 3 | /// 4 | /// A placeholder value in a VirtualizingList 5 | /// 6 | public class VirtualizingListPlaceholder 7 | { 8 | public override string ToString() 9 | { 10 | return Resources.String_LoadingFeaturedPackages; 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /WebMatrixExtension/NuGetExtension/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | 4 | [assembly: AssemblyTitle("NuGetExtension")] 5 | 6 | [assembly: InternalsVisibleTo("NuGetExtension.Tests")] 7 | [assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")] 8 | [assembly: AssemblyVersionAttribute("2.6.1.0")] 9 | [assembly: AssemblyFileVersionAttribute("2.6.1.0")] 10 | -------------------------------------------------------------------------------- /WebMatrixExtension/NuGetExtension/Resources/ClearSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/WebMatrixExtension/NuGetExtension/Resources/ClearSearch.png -------------------------------------------------------------------------------- /WebMatrixExtension/NuGetExtension/Resources/MagGlass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/WebMatrixExtension/NuGetExtension/Resources/MagGlass.png -------------------------------------------------------------------------------- /WebMatrixExtension/NuGetExtension/Resources/backarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/WebMatrixExtension/NuGetExtension/Resources/backarrow.png -------------------------------------------------------------------------------- /WebMatrixExtension/NuGetExtension/Resources/nuget_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/WebMatrixExtension/NuGetExtension/Resources/nuget_16.png -------------------------------------------------------------------------------- /WebMatrixExtension/NuGetExtension/Resources/nuget_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/WebMatrixExtension/NuGetExtension/Resources/nuget_32.png -------------------------------------------------------------------------------- /WebMatrixExtension/NuGetExtension/Resources/nuget_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/WebMatrixExtension/NuGetExtension/Resources/nuget_48.png -------------------------------------------------------------------------------- /WebMatrixExtension/NuGetExtension/Resources/nuget_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/WebMatrixExtension/NuGetExtension/Resources/nuget_96.png -------------------------------------------------------------------------------- /WebMatrixExtension/NuGetExtension/WPF/ViewModel/PackageViewModelAction.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace NuGet.WebMatrix 3 | { 4 | internal enum PackageViewModelAction 5 | { 6 | Update, 7 | InstallOrUninstall, 8 | UpdateAll, 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /WebMatrixExtension/NuGetExtension/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | export EnableNuGetPackageRestore="true" 3 | xbuild Build/Build.proj /p:Configuration="Mono Release" /t:GoMono 4 | -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.ProjectSystem.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/Microsoft.VisualStudio.ProjectSystem.Interop.dll -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Shell.Interop.11.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/Microsoft.VisualStudio.Shell.Interop.11.0.dll -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.VCProjectEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/Microsoft.VisualStudio.VCProjectEngine.dll -------------------------------------------------------------------------------- /lib/Microsoft.Web.XmlTransform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/Microsoft.Web.XmlTransform.dll -------------------------------------------------------------------------------- /lib/Microsoft.WebMatrix.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/Microsoft.WebMatrix.Core.dll -------------------------------------------------------------------------------- /lib/Microsoft.WebMatrix.Extensibility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/Microsoft.WebMatrix.Extensibility.dll -------------------------------------------------------------------------------- /lib/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/NuGet.exe -------------------------------------------------------------------------------- /lib/VS10/Microsoft.TeamFoundation.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS10/Microsoft.TeamFoundation.Client.dll -------------------------------------------------------------------------------- /lib/VS10/Microsoft.TeamFoundation.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS10/Microsoft.TeamFoundation.Common.dll -------------------------------------------------------------------------------- /lib/VS10/Microsoft.TeamFoundation.VersionControl.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS10/Microsoft.TeamFoundation.VersionControl.Client.dll -------------------------------------------------------------------------------- /lib/VS10/Microsoft.VisualStudio.ExtensionManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS10/Microsoft.VisualStudio.ExtensionManager.dll -------------------------------------------------------------------------------- /lib/VS10/Microsoft.VisualStudio.ExtensionsExplorer.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS10/Microsoft.VisualStudio.ExtensionsExplorer.UI.dll -------------------------------------------------------------------------------- /lib/VS10/Microsoft.VisualStudio.ExtensionsExplorer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS10/Microsoft.VisualStudio.ExtensionsExplorer.dll -------------------------------------------------------------------------------- /lib/VS10/Microsoft.VisualStudio.Shell.10.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS10/Microsoft.VisualStudio.Shell.10.0.dll -------------------------------------------------------------------------------- /lib/VS10/Microsoft.VisualStudio.VCProjectEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS10/Microsoft.VisualStudio.VCProjectEngine.dll -------------------------------------------------------------------------------- /lib/VS11/Microsoft.TeamFoundation.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS11/Microsoft.TeamFoundation.Client.dll -------------------------------------------------------------------------------- /lib/VS11/Microsoft.TeamFoundation.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS11/Microsoft.TeamFoundation.Common.dll -------------------------------------------------------------------------------- /lib/VS11/Microsoft.TeamFoundation.VersionControl.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS11/Microsoft.TeamFoundation.VersionControl.Client.dll -------------------------------------------------------------------------------- /lib/VS11/Microsoft.VisualStudio.ExtensionsExplorer.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS11/Microsoft.VisualStudio.ExtensionsExplorer.UI.dll -------------------------------------------------------------------------------- /lib/VS11/Microsoft.VisualStudio.ExtensionsExplorer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS11/Microsoft.VisualStudio.ExtensionsExplorer.dll -------------------------------------------------------------------------------- /lib/VS11/Microsoft.VisualStudio.Project.V11Only.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS11/Microsoft.VisualStudio.Project.V11Only.dll -------------------------------------------------------------------------------- /lib/VS12/Microsoft.TeamFoundation.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS12/Microsoft.TeamFoundation.Client.dll -------------------------------------------------------------------------------- /lib/VS12/Microsoft.TeamFoundation.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS12/Microsoft.TeamFoundation.Common.dll -------------------------------------------------------------------------------- /lib/VS12/Microsoft.TeamFoundation.VersionControl.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS12/Microsoft.TeamFoundation.VersionControl.Client.dll -------------------------------------------------------------------------------- /lib/VS12/Microsoft.VisualStudio.ExtensionsExplorer.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS12/Microsoft.VisualStudio.ExtensionsExplorer.UI.dll -------------------------------------------------------------------------------- /lib/VS12/Microsoft.VisualStudio.ExtensionsExplorer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS12/Microsoft.VisualStudio.ExtensionsExplorer.dll -------------------------------------------------------------------------------- /lib/VS12/Microsoft.VisualStudio.ProjectSystem.V12Only.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS12/Microsoft.VisualStudio.ProjectSystem.V12Only.dll -------------------------------------------------------------------------------- /lib/VS12/Microsoft.VisualStudio.Services.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS12/Microsoft.VisualStudio.Services.Common.dll -------------------------------------------------------------------------------- /lib/VS12/Microsoft.VisualStudio.Shell.12.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS12/Microsoft.VisualStudio.Shell.12.0.dll -------------------------------------------------------------------------------- /lib/VS12/Microsoft.VisualStudio.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS12/Microsoft.VisualStudio.Threading.dll -------------------------------------------------------------------------------- /lib/VS14/Microsoft.TeamFoundation.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS14/Microsoft.TeamFoundation.Client.dll -------------------------------------------------------------------------------- /lib/VS14/Microsoft.TeamFoundation.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS14/Microsoft.TeamFoundation.Common.dll -------------------------------------------------------------------------------- /lib/VS14/Microsoft.TeamFoundation.VersionControl.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS14/Microsoft.TeamFoundation.VersionControl.Client.dll -------------------------------------------------------------------------------- /lib/VS14/Microsoft.VisualStudio.ExtensionsExplorer.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS14/Microsoft.VisualStudio.ExtensionsExplorer.UI.dll -------------------------------------------------------------------------------- /lib/VS14/Microsoft.VisualStudio.ExtensionsExplorer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS14/Microsoft.VisualStudio.ExtensionsExplorer.dll -------------------------------------------------------------------------------- /lib/VS14/Microsoft.VisualStudio.ProjectSystem.V14Only.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS14/Microsoft.VisualStudio.ProjectSystem.V14Only.dll -------------------------------------------------------------------------------- /lib/VS14/Microsoft.VisualStudio.Services.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS14/Microsoft.VisualStudio.Services.Common.dll -------------------------------------------------------------------------------- /lib/VS14/Microsoft.VisualStudio.Shell.14.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS14/Microsoft.VisualStudio.Shell.14.0.dll -------------------------------------------------------------------------------- /lib/VS14/Microsoft.VisualStudio.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/lib/VS14/Microsoft.VisualStudio.Threading.dll -------------------------------------------------------------------------------- /src/CommandLine.ServerExtensions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("NuGet.ServerExtensions")] 4 | [assembly: AssemblyDescription("Server extensions for NuGet CommandLine")] 5 | -------------------------------------------------------------------------------- /src/CommandLine/Common/IMSBuildProjectSystem.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace NuGet.Common 3 | { 4 | public interface IMSBuildProjectSystem : IProjectSystem 5 | { 6 | void Save(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/CommandLine/Common/Verbosity.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace NuGet 3 | { 4 | public enum Verbosity 5 | { 6 | Normal, 7 | Quiet, 8 | Detailed 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/CommandLine/FileConflictAction.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace NuGet 3 | { 4 | public enum FileConflictAction 5 | { 6 | None, 7 | Overwrite, 8 | Ignore 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/CommandLine/ISolutionParser.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace NuGet 4 | { 5 | internal interface ISolutionParser 6 | { 7 | IEnumerable GetAllProjectFileNames(IFileSystem fileSystem, string solutionFile); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/CommandLine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | 4 | [assembly: AssemblyTitle("NuGet")] 5 | [assembly: AssemblyDescription("NuGet Command Line Tool")] 6 | 7 | [assembly: InternalsVisibleTo("NuGet.Test")] 8 | [assembly: InternalsVisibleTo("NuGet.Test.Integration")] -------------------------------------------------------------------------------- /src/Core/Analysis/IPackageRule.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace NuGet 4 | { 5 | public interface IPackageRule 6 | { 7 | IEnumerable Validate(IPackage package); 8 | } 9 | } -------------------------------------------------------------------------------- /src/Core/Analysis/PackageIssueLevel.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace NuGet 3 | { 4 | public enum PackageIssueLevel 5 | { 6 | Warning = 0, 7 | Error = 1, 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/Core/Authoring/AssemblyMetadata.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NuGet 4 | { 5 | [Serializable] 6 | public class AssemblyMetadata 7 | { 8 | public string Name { get; set; } 9 | public SemanticVersion Version { get; set; } 10 | public string Title { get; set; } 11 | public string Description { get; set; } 12 | public string Company { get; set; } 13 | public string Copyright { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Core/Authoring/IPackageBuilder.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.ObjectModel; 2 | using System.IO; 3 | 4 | namespace NuGet 5 | { 6 | public interface IPackageBuilder : IPackageMetadata 7 | { 8 | Collection Files { get; } 9 | void Save(Stream stream); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Core/Authoring/IPropertyProvider.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet 2 | { 3 | public interface IPropertyProvider 4 | { 5 | dynamic GetPropertyValue(string propertyName); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Core/Authoring/ManifestVersionAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NuGet 4 | { 5 | [AttributeUsage(AttributeTargets.Property, AllowMultiple = false)] 6 | internal sealed class ManifestVersionAttribute : Attribute 7 | { 8 | public ManifestVersionAttribute(int version) 9 | { 10 | Version = version; 11 | 12 | } 13 | public int Version { get; private set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Core/ConstraintProviders/IPackageConstraintProvider.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet 2 | { 3 | public interface IPackageConstraintProvider 4 | { 5 | string Source { get; } 6 | IVersionSpec GetConstraint(string packageId); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Core/Extensions/AssemblyExtensions.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | namespace NuGet 4 | { 5 | public static class AssemblyExtensions 6 | { 7 | public static AssemblyName GetNameSafe(this Assembly assembly) 8 | { 9 | return new AssemblyName(assembly.FullName); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/Core/Extensions/ObjectExtensions.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace NuGet 3 | { 4 | internal static class ObjectExtensions 5 | { 6 | public static string ToStringSafe(this object obj) 7 | { 8 | return obj == null ? null : obj.ToString(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Core/Extensions/QueryableExtensions.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.Linq; 3 | 4 | namespace NuGet 5 | { 6 | public static class QueryableExtensions 7 | { 8 | public static IEnumerable AsBufferedEnumerable(this IQueryable source, int bufferSize) 9 | { 10 | return new BufferedEnumerable(source, bufferSize); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /src/Core/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet 2 | { 3 | internal static class StringExtensions 4 | { 5 | public static string SafeTrim(this string value) 6 | { 7 | return value == null ? null : value.Trim(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Core/Http/CredentialType.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet 2 | { 3 | public enum CredentialType 4 | { 5 | ProxyCredentials, 6 | RequestCredentials 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Core/Http/ICredentialCache.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Net; 3 | 4 | namespace NuGet 5 | { 6 | public interface ICredentialCache 7 | { 8 | void Add(Uri uri, ICredentials credentials); 9 | ICredentials GetCredentials(Uri uri); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Core/Http/IHttpClientEvents.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NuGet 4 | { 5 | public interface IHttpClientEvents : IProgressProvider 6 | { 7 | event EventHandler SendingRequest; 8 | } 9 | } -------------------------------------------------------------------------------- /src/Core/Http/IHttpWebResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Specialized; 3 | using System.Net; 4 | 5 | namespace NuGet 6 | { 7 | // For unit testing 8 | public interface IHttpWebResponse : IDisposable 9 | { 10 | HttpStatusCode StatusCode { get; } 11 | Uri ResponseUri { get; } 12 | string AuthType { get; } 13 | NameValueCollection Headers { get; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Core/Http/IProxyCache.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Net; 3 | 4 | namespace NuGet 5 | { 6 | public interface IProxyCache 7 | { 8 | void Add(IWebProxy proxy); 9 | IWebProxy GetProxy(Uri uri); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Core/IEnvironmentVariableReader.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet 2 | { 3 | public interface IEnvironmentVariableReader 4 | { 5 | string GetEnvironmentVariable(string variable); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Core/IMachineWideSettings.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace NuGet 4 | { 5 | public interface IMachineWideSettings 6 | { 7 | IEnumerable Settings { get; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/Core/Logging/FileConflictResolution.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet 2 | { 3 | public enum FileConflictResolution 4 | { 5 | Overwrite, 6 | Ignore, 7 | OverwriteAll, 8 | IgnoreAll 9 | } 10 | } -------------------------------------------------------------------------------- /src/Core/Logging/IFileConflictResolver.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet 2 | { 3 | public interface IFileConflictResolver 4 | { 5 | FileConflictResolution ResolveFileConflict(string message); 6 | } 7 | } -------------------------------------------------------------------------------- /src/Core/Logging/ILogger.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet 2 | { 3 | public interface ILogger : IFileConflictResolver 4 | { 5 | void Log(MessageLevel level, string message, params object[] args); 6 | } 7 | } -------------------------------------------------------------------------------- /src/Core/Logging/MessageLevel.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet 2 | { 3 | public enum MessageLevel 4 | { 5 | Info, 6 | Warning, 7 | Debug, 8 | Error 9 | } 10 | } -------------------------------------------------------------------------------- /src/Core/NuGet.Frameworks/comparers/empty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/src/Core/NuGet.Frameworks/comparers/empty.txt -------------------------------------------------------------------------------- /src/Core/NuGet.Frameworks/def/empty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/src/Core/NuGet.Frameworks/def/empty.txt -------------------------------------------------------------------------------- /src/Core/NuGet.Shared/empty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/src/Core/NuGet.Shared/empty.txt -------------------------------------------------------------------------------- /src/Core/PackageSource/IPackageSourceProvider.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace NuGet 4 | { 5 | public interface IPackageSourceProvider 6 | { 7 | IEnumerable LoadPackageSources(); 8 | void SavePackageSources(IEnumerable sources); 9 | void DisablePackageSource(PackageSource source); 10 | bool IsPackageSourceEnabled(PackageSource source); 11 | } 12 | } -------------------------------------------------------------------------------- /src/Core/PackageWalker/IDependentsResolver.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace NuGet 4 | { 5 | public interface IDependentsResolver 6 | { 7 | IEnumerable GetDependents(IPackage package); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/Core/PackageWalker/IPackageOperationResolver.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace NuGet 4 | { 5 | public interface IPackageOperationResolver 6 | { 7 | IEnumerable ResolveOperations(IPackage package); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/Core/PackageWalker/PackageAction.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet 2 | { 3 | public enum PackageAction 4 | { 5 | Install, 6 | Uninstall 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Core/PackageWalker/PackageTargets.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NuGet 4 | { 5 | [Flags] 6 | public enum PackageTargets 7 | { 8 | None = 0, 9 | Project = 1, 10 | External = 2, 11 | All = Project | External 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/Core/Packages/IFrameworkTargetable.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.Runtime.Versioning; 3 | 4 | namespace NuGet 5 | { 6 | public interface IFrameworkTargetable 7 | { 8 | IEnumerable SupportedFrameworks { get; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Core/Packages/IPackageAssemblyReference.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet 2 | { 3 | public interface IPackageAssemblyReference : IPackageFile 4 | { 5 | string Name 6 | { 7 | get; 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Core/Packages/IServerPackageMetadata.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NuGet 4 | { 5 | public interface IServerPackageMetadata 6 | { 7 | Uri ReportAbuseUrl { get; } 8 | int DownloadCount { get; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Core/ProjectSystem/IBatchProcessor.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace NuGet 4 | { 5 | public interface IBatchProcessor 6 | { 7 | void BeginProcessing(IEnumerable batch, PackageAction action); 8 | void EndProcessing(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Core/ProjectSystem/ProjectImportLocation.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace NuGet 3 | { 4 | public enum ProjectImportLocation 5 | { 6 | Top, 7 | Bottom 8 | } 9 | } -------------------------------------------------------------------------------- /src/Core/Repositories/ICloneableRepository.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet 2 | { 3 | public interface ICloneableRepository 4 | { 5 | IPackageRepository Clone(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Core/Repositories/ICultureAwareRepository.cs: -------------------------------------------------------------------------------- 1 | using System.Globalization; 2 | 3 | namespace NuGet 4 | { 5 | public interface ICultureAwareRepository 6 | { 7 | CultureInfo Culture { get; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/Core/Repositories/IDependencyResolver.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet 2 | { 3 | public interface IDependencyResolver 4 | { 5 | IPackage ResolveDependency(PackageDependency dependency, IPackageConstraintProvider constraintProvider, bool allowPrereleaseVersions, bool preferListedPackages, DependencyVersion dependencyVersion); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Core/Repositories/IFindPackagesRepository.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace NuGet 4 | { 5 | public interface IFindPackagesRepository 6 | { 7 | IEnumerable FindPackagesById(string packageId); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/Core/Repositories/ILatestPackageLookup.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet 2 | { 3 | public interface ILatestPackageLookup 4 | { 5 | bool TryFindLatestPackageById(string id, out SemanticVersion latestVersion); 6 | bool TryFindLatestPackageById(string id, bool includePrerelease, out IPackage package); 7 | } 8 | } -------------------------------------------------------------------------------- /src/Core/Repositories/IPackageCacheRepository.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.IO; 3 | 4 | namespace NuGet 5 | { 6 | public interface IPackageCacheRepository : IPackageRepository 7 | { 8 | bool InvokeOnPackage(string packageId, SemanticVersion version, Action action); 9 | } 10 | } -------------------------------------------------------------------------------- /src/Core/Repositories/IPackageName.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace NuGet 3 | { 4 | public interface IPackageName 5 | { 6 | string Id { get; } 7 | SemanticVersion Version { get; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/Core/Repositories/IPackageReferenceRepository.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.Versioning; 2 | 3 | namespace NuGet 4 | { 5 | public interface IPackageReferenceRepository : IPackageRepository 6 | { 7 | void AddPackage(string packageId, SemanticVersion version, bool developmentDependency, FrameworkName targetFramework); 8 | FrameworkName GetPackageTargetFramework(string packageId); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Core/Repositories/IPackageRepositoryFactory.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet 2 | { 3 | public interface IPackageRepositoryFactory 4 | { 5 | IPackageRepository CreateRepository(string packageSource); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/Core/Runtime/IAssembly.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace NuGet.Runtime 5 | { 6 | public interface IAssembly 7 | { 8 | string Name { get; } 9 | Version Version { get; } 10 | string PublicKeyToken { get; } 11 | string Culture { get; } 12 | IEnumerable ReferencedAssemblies { get; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/Core/Utility/CredentialState.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet 2 | { 3 | /// 4 | /// Represents the return state of the credentials that would come back from the ICredentialProvider 5 | /// 6 | public enum CredentialState 7 | { 8 | HasCredentials, 9 | Abort 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Core/Utility/IHashProvider.cs: -------------------------------------------------------------------------------- 1 | using System.IO; 2 | 3 | namespace NuGet 4 | { 5 | public interface IHashProvider 6 | { 7 | byte[] CalculateHash(Stream stream); 8 | 9 | byte[] CalculateHash(byte[] data); 10 | 11 | bool VerifyHash(byte[] data, byte[] hash); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/Core/Utility/IProgressProvider.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NuGet 4 | { 5 | public interface IProgressProvider 6 | { 7 | event EventHandler ProgressAvailable; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/Core/Utility/IVersionSpec.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace NuGet 3 | { 4 | public interface IVersionSpec 5 | { 6 | SemanticVersion MinVersion { get; } 7 | bool IsMinInclusive { get; } 8 | SemanticVersion MaxVersion { get; } 9 | bool IsMaxInclusive { get; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Core/Utility/Token.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet 2 | { 3 | public class Token 4 | { 5 | public string Value { get; private set; } 6 | public TokenCategory Category { get; private set; } 7 | 8 | public Token(TokenCategory category, string value) 9 | { 10 | Category = category; 11 | Value = value; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/Core/Utility/TokenCategory.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet 2 | { 3 | public enum TokenCategory 4 | { 5 | Text, 6 | Variable 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/Dialog/Nodes/PagedPackagesSearchNode.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.VisualStudio.ExtensionsExplorer; 2 | 3 | namespace NuGet.Dialog.Providers 4 | { 5 | internal class PagedPackagesSearchNode : PackagesSearchNode, IVsPageDataSource 6 | { 7 | public PagedPackagesSearchNode(PackagesProviderBase provider, IVsExtensionsTreeNode parent, PackagesTreeNodeBase baseNode, string searchText) : 8 | base(provider, parent, baseNode, searchText) 9 | { 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/Dialog10/packageicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/src/Dialog10/packageicon.png -------------------------------------------------------------------------------- /src/Dialog11/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.CompilerServices; 4 | 5 | [assembly: AssemblyTitle("NuGet.Dialog11")] 6 | [assembly: AssemblyDescription("Manage NuGet Package dialog for Visual Studio 2012.")] 7 | [assembly: CLSCompliant(false)] 8 | 9 | [assembly: InternalsVisibleTo("NuGet.TestUI")] 10 | [assembly: InternalsVisibleTo("NuGet.Dialog.Test")] -------------------------------------------------------------------------------- /src/Dialog11/packageicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/src/Dialog11/packageicon.png -------------------------------------------------------------------------------- /src/Dialog12/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.CompilerServices; 4 | 5 | [assembly: AssemblyTitle("NuGet.Dialog")] 6 | [assembly: AssemblyDescription("Manage NuGet Package dialog for Visual Studio versions greater than 2012.")] 7 | [assembly: CLSCompliant(false)] 8 | 9 | [assembly: InternalsVisibleTo("NuGet.TestUI")] 10 | [assembly: InternalsVisibleTo("NuGet.Dialog.Test")] -------------------------------------------------------------------------------- /src/Dialog12/packageicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/src/Dialog12/packageicon.png -------------------------------------------------------------------------------- /src/Dialog14/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.CompilerServices; 4 | 5 | [assembly: AssemblyTitle("NuGet.Dialog.14")] 6 | [assembly: AssemblyDescription("Manage NuGet Package dialog for Visual Studio 2014.")] 7 | [assembly: CLSCompliant(false)] 8 | 9 | [assembly: InternalsVisibleTo("NuGet.TestUI")] 10 | [assembly: InternalsVisibleTo("NuGet.Dialog.Test")] -------------------------------------------------------------------------------- /src/Dialog14/packageicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/src/Dialog14/packageicon.png -------------------------------------------------------------------------------- /src/DialogServices/PackageManagerUI/IProviderSettings.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace NuGet.Dialog.PackageManagerUI 3 | { 4 | public interface IProviderSettings 5 | { 6 | int SelectedProvider { get; set; } 7 | bool IncludePrereleasePackages { get; set; } 8 | } 9 | } -------------------------------------------------------------------------------- /src/DialogServices/PackageManagerUI/IUpdateAllUIService.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace NuGet.Dialog.PackageManagerUI 3 | { 4 | public interface IUpdateAllUIService 5 | { 6 | void Show(); 7 | void Hide(); 8 | UpdateAllUI CreateUIElement(); 9 | void DisposeElement(); 10 | } 11 | } -------------------------------------------------------------------------------- /src/DialogServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.CompilerServices; 4 | 5 | [assembly: AssemblyTitle("NuGet.DialogServices")] 6 | [assembly: AssemblyDescription("Contains common service classes for NuGet.Dialog and NuGet.Dialog10")] 7 | [assembly: CLSCompliant(false)] 8 | 9 | [assembly: InternalsVisibleTo("NuGet.TestUI")] 10 | [assembly: InternalsVisibleTo("NuGet.Dialog.Test")] 11 | -------------------------------------------------------------------------------- /src/Options/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Runtime.CompilerServices; 4 | 5 | [assembly: AssemblyTitle("NuGet.Options")] 6 | [assembly: AssemblyDescription("Options page for NuGet package manager")] 7 | [assembly: CLSCompliant(false)] 8 | 9 | [assembly: InternalsVisibleTo("NuGet.TestUI")] 10 | -------------------------------------------------------------------------------- /src/Server/DataServices/Packages.svc: -------------------------------------------------------------------------------- 1 |  2 | 3 | <%@ ServiceHost Language="C#" Factory="System.Data.Services.DataServiceHostFactory, System.Data.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Service="NuGet.Server.DataServices.Packages" %> 4 | -------------------------------------------------------------------------------- /src/Server/Infrastructure/IPackageAuthenticationService.cs: -------------------------------------------------------------------------------- 1 | using System.Security.Principal; 2 | 3 | namespace NuGet.Server.Infrastructure 4 | { 5 | public interface IPackageAuthenticationService 6 | { 7 | bool IsAuthenticated(IPrincipal user, string apiKey, string packageId); 8 | } 9 | } -------------------------------------------------------------------------------- /src/Server/Infrastructure/IServerPackageRepository.cs: -------------------------------------------------------------------------------- 1 | using NuGet.Server.DataServices; 2 | 3 | namespace NuGet.Server.Infrastructure 4 | { 5 | public interface IServerPackageRepository : IServiceBasedRepository 6 | { 7 | void RemovePackage(string packageId, SemanticVersion version); 8 | Package GetMetadataPackage(IPackage package); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Server/Packages/Readme.txt: -------------------------------------------------------------------------------- 1 | To add packages to the feed put package files (.nupkg files) in this folder. -------------------------------------------------------------------------------- /src/Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | 4 | [assembly: AssemblyTitle("NuGet.Server")] 5 | [assembly: AssemblyDescription("Web Application used to host a read-only NuGet feed")] 6 | 7 | [assembly: InternalsVisibleTo("Server.Test")] -------------------------------------------------------------------------------- /src/Server/Publishing/IPackageService.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | 3 | namespace NuGet.Server 4 | { 5 | public interface IPackageService 6 | { 7 | void CreatePackage(HttpContextBase context); 8 | 9 | void PublishPackage(HttpContextBase context); 10 | 11 | void DeletePackage(HttpContextBase context); 12 | 13 | void DownloadPackage(HttpContextBase context); 14 | } 15 | } -------------------------------------------------------------------------------- /src/Server/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/src/Server/favicon.ico -------------------------------------------------------------------------------- /src/Server/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/Server/web.config.install.xdt: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/TeamFoundationServer/ITfsPendingChange.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet.TeamFoundationServer 2 | { 3 | public interface ITfsPendingChange 4 | { 5 | bool IsAdd { get; } 6 | bool IsDelete { get; } 7 | bool IsEdit { get; } 8 | string LocalItem { get; } 9 | } 10 | } -------------------------------------------------------------------------------- /src/TeamFoundationServer10/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("NuGet.TeamFoundationServer10")] 4 | [assembly: AssemblyDescription("Provides source control bindings for packages installed via NuGet")] 5 | -------------------------------------------------------------------------------- /src/TeamFoundationServer10/ProviderConstants.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet.TeamFoundationServer 2 | { 3 | internal static class ProviderConstants 4 | { 5 | public const int SupportedVsVersion = 10; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/TeamFoundationServer11/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("NuGet.TeamFoundationServer11")] 4 | [assembly: AssemblyDescription("Provides source control bindings for packages installed via NuGet")] 5 | -------------------------------------------------------------------------------- /src/TeamFoundationServer11/ProviderConstants.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet.TeamFoundationServer 2 | { 3 | internal static class ProviderConstants 4 | { 5 | public const int SupportedVsVersion = 11; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/TeamFoundationServer12/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("NuGet.TeamFoundationServer12")] 4 | [assembly: AssemblyDescription("Provides source control bindings for packages installed via NuGet")] 5 | -------------------------------------------------------------------------------- /src/TeamFoundationServer12/ProviderConstants.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet.TeamFoundationServer 2 | { 3 | internal static class ProviderConstants 4 | { 5 | public const int SupportedVsVersion = 12; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/TeamFoundationServer14/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("NuGet.TeamFoundationServer14")] 4 | [assembly: AssemblyDescription("Provides source control bindings for packages installed via NuGet")] 5 | -------------------------------------------------------------------------------- /src/TeamFoundationServer14/ProviderConstants.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet.TeamFoundationServer 2 | { 3 | internal static class ProviderConstants 4 | { 5 | public const int SupportedVsVersion = 14; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/VisualStudio.Interop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("NuGet.VisualStudio.Interop")] 4 | [assembly: AssemblyDescription("NuGet/Visual Studio interop assembly")] 5 | 6 | // The version of this assembly should never be changed. 7 | [assembly: AssemblyVersion("1.0.0.0")] 8 | -------------------------------------------------------------------------------- /src/VisualStudio/Extensibility/VsPackageEventHandler.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet.VisualStudio 2 | { 3 | public delegate void VsPackageEventHandler(IVsPackageMetadata metadata); 4 | } 5 | -------------------------------------------------------------------------------- /src/VisualStudio/IFileSystemProvider.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet.VisualStudio 2 | { 3 | public interface IFileSystemProvider 4 | { 5 | IFileSystem GetFileSystem(string path); 6 | IFileSystem GetFileSystem(string path, bool ignoreSourceControlSetting); 7 | } 8 | } -------------------------------------------------------------------------------- /src/VisualStudio/IOptionsPageActivator.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NuGet.VisualStudio 4 | { 5 | public interface IOptionsPageActivator 6 | { 7 | void NotifyOptionsDialogClosed(); 8 | void ActivatePage(OptionsPage page, Action closeCallback); 9 | } 10 | } -------------------------------------------------------------------------------- /src/VisualStudio/IPackageOperationEventListener.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using EnvDTE; 3 | 4 | namespace NuGet.VisualStudio 5 | { 6 | public interface IPackageOperationEventListener 7 | { 8 | void OnBeforeAddPackageReference(Project project); 9 | void OnAfterAddPackageReference(Project project); 10 | void OnAddPackageReferenceError(Project project, Exception exception); 11 | } 12 | } -------------------------------------------------------------------------------- /src/VisualStudio/IProjectSystemFactory.cs: -------------------------------------------------------------------------------- 1 | using EnvDTE; 2 | 3 | namespace NuGet.VisualStudio 4 | { 5 | public interface IProjectSystemFactory 6 | { 7 | IProjectSystem CreateProjectSystem(Project project, IFileSystemProvider fileSystemProvider); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/VisualStudio/IRegistryKey.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Win32; 2 | 3 | namespace NuGet.VisualStudio 4 | { 5 | public interface IRegistryKey 6 | { 7 | IRegistryKey OpenSubKey(string name); 8 | object GetValue(string name); 9 | void Close(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/VisualStudio/IRepositorySettings.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet.VisualStudio 2 | { 3 | public interface IRepositorySettings 4 | { 5 | string RepositoryPath { get; } 6 | string ConfigFolderPath { get; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/VisualStudio/ISourceControlFileSystem.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace NuGet.VisualStudio 4 | { 5 | public interface ISourceControlFileSystem : IFileSystem 6 | { 7 | bool IsSourceControlBound(string path); 8 | bool BindToSourceControl(IEnumerable paths); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/VisualStudio/ISourceControlFileSystemProvider.cs: -------------------------------------------------------------------------------- 1 | using EnvDTE80; 2 | 3 | namespace NuGet.VisualStudio 4 | { 5 | public interface ISourceControlFileSystemProvider 6 | { 7 | ISourceControlFileSystem GetFileSystem(string path, SourceControlBindings binding); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/VisualStudio/IVsCommonOperations.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NuGet.VisualStudio 4 | { 5 | public interface IVsCommonOperations 6 | { 7 | bool OpenFile(string filePath); 8 | IDisposable SaveSolutionExplorerNodeStates(ISolutionManager solutionManager); 9 | } 10 | } -------------------------------------------------------------------------------- /src/VisualStudio/IVsPackageManagerFactory.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet.VisualStudio 2 | { 3 | public interface IVsPackageManagerFactory 4 | { 5 | IVsPackageManager CreatePackageManager(); 6 | 7 | IVsPackageManager CreatePackageManager(IPackageRepository repository, bool useFallbackForDependencies); 8 | 9 | IVsPackageManager CreatePackageManagerToManageInstalledPackages(); 10 | 11 | IVsPackageManager CreatePackageManagerWithAllPackageSources(); 12 | } 13 | } -------------------------------------------------------------------------------- /src/VisualStudio/IVsShellInfo.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet.VisualStudio 2 | { 3 | public interface IVsShellInfo 4 | { 5 | bool IsVisualStudioExpressForWindows8 { get; } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/VisualStudio/IVsSourceControlTracker.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NuGet.VisualStudio 4 | { 5 | public interface IVsSourceControlTracker 6 | { 7 | event EventHandler SolutionBoundToSourceControl; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/VisualStudio/IVsTemplateWizard.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.InteropServices; 2 | using Microsoft.VisualStudio.TemplateWizard; 3 | 4 | namespace NuGet.VisualStudio 5 | { 6 | [ComImport] 7 | [Guid("D6DEA71B-4A42-4B55-8A59-3191B91EF36E")] 8 | public interface IVsTemplateWizard : IWizard 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/VisualStudio/IWindowSettingsManager.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace NuGet.VisualStudio 4 | { 5 | public interface IWindowSettingsManager 6 | { 7 | Size GetWindowSize(string windowToken); 8 | void SetWindowSize(string windowToken, Size size); 9 | } 10 | } -------------------------------------------------------------------------------- /src/VisualStudio/NativeMethods.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace NuGet.VisualStudio 3 | { 4 | internal class NativeMethods 5 | { 6 | public const int IDCANCEL = 2; 7 | public const int IDYES = 6; 8 | public const int IDNO = 7; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/VisualStudio/OptionsPage.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace NuGet.VisualStudio 3 | { 4 | public enum OptionsPage 5 | { 6 | General, 7 | PackageSources 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/VisualStudio/OutputConsole/IOutputConsoleProvider.cs: -------------------------------------------------------------------------------- 1 | using NuGetConsole; 2 | 3 | namespace NuGet.VisualStudio 4 | { 5 | public interface IOutputConsoleProvider 6 | { 7 | IConsole CreateOutputConsole(bool requirePowerShellHost); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/VisualStudio/PackageRestore/PackagesMissingStatusEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NuGet.VisualStudio 4 | { 5 | public class PackagesMissingStatusEventArgs : EventArgs 6 | { 7 | public bool PackagesMissing { get; private set; } 8 | 9 | public PackagesMissingStatusEventArgs(bool packagesMissing) 10 | { 11 | PackagesMissing = packagesMissing; 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /src/VisualStudio/PackageSource/IVsPackageSourceProvider.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace NuGet.VisualStudio 3 | { 4 | public interface IVsPackageSourceProvider : IPackageSourceProvider 5 | { 6 | PackageSource ActivePackageSource { get; set; } 7 | } 8 | } -------------------------------------------------------------------------------- /src/VisualStudio/PowershellScripts.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet.VisualStudio 2 | { 3 | public static class PowerShellScripts 4 | { 5 | public static readonly string Install = "install.ps1"; 6 | public static readonly string Uninstall = "uninstall.ps1"; 7 | public static readonly string Init = "init.ps1"; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/VisualStudio/ProductUpdate/IProductUpdateService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NuGet.VisualStudio 4 | { 5 | public interface IProductUpdateService 6 | { 7 | void CheckForAvailableUpdateAsync(); 8 | void Update(); 9 | void DeclineUpdate(bool doNotRemindAgain); 10 | event EventHandler UpdateAvailable; 11 | } 12 | } -------------------------------------------------------------------------------- /src/VisualStudio/ProductUpdate/IProductUpdateSettings.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace NuGet.VisualStudio 3 | { 4 | public interface IProductUpdateSettings 5 | { 6 | bool ShouldCheckForUpdate { get; set; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/VisualStudio/ProductUpdate/IUpdateWorker.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NuGet.VisualStudio 4 | { 5 | internal interface IUpdateWorker 6 | { 7 | bool CheckForUpdate(out Version installedVersion, out Version newVersion); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/VisualStudio/ProductUpdate/NullUpdateWorker.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NuGet.VisualStudio 4 | { 5 | internal class NullUpdateWorker : IUpdateWorker 6 | { 7 | public bool CheckForUpdate(out Version installedVersion, out Version newVersion) 8 | { 9 | installedVersion = newVersion = null; 10 | return false; 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/VisualStudio/ProjectEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using EnvDTE; 3 | 4 | namespace NuGet.VisualStudio 5 | { 6 | public class ProjectEventArgs : EventArgs 7 | { 8 | public ProjectEventArgs(Project project) 9 | { 10 | Project = project; 11 | } 12 | 13 | public Project Project { get; private set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/VisualStudio/ProjectSystems/IVsProjectSystem.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet.VisualStudio 2 | { 3 | public interface IVsProjectSystem : IProjectSystem 4 | { 5 | string UniqueName { get; } 6 | } 7 | } -------------------------------------------------------------------------------- /src/VisualStudio/Properties/NuGet.VisualStudio.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/src/VisualStudio/Properties/NuGet.VisualStudio.nuspec -------------------------------------------------------------------------------- /src/VisualStudio/Properties/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $vsRef = $project.Object.References.Item("NuGet.VisualStudio") 4 | if ($vsRef -and !$vsRef.EmbedInteropTypes) 5 | { 6 | $vsRef.EmbedInteropTypes = $true 7 | } -------------------------------------------------------------------------------- /src/VisualStudio/Settings/ISettingsManager.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace NuGet.VisualStudio 3 | { 4 | public interface ISettingsManager 5 | { 6 | ISettingsStore GetReadOnlySettingsStore(); 7 | IWritableSettingsStore GetWritableSettingsStore(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/VisualStudio/Settings/ISettingsStore.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace NuGet.VisualStudio 3 | { 4 | public interface ISettingsStore 5 | { 6 | bool CollectionExists(string collection); 7 | bool GetBoolean(string collection, string propertyName, bool defaultValue); 8 | int GetInt32(string collection, string propertyName, int defaultValue); 9 | string GetString(string collection, string propertyName, string defaultValue); 10 | } 11 | } -------------------------------------------------------------------------------- /src/VisualStudio10/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.InteropServices; 3 | 4 | [assembly: AssemblyTitle("VisualStudio2010")] 5 | [assembly: AssemblyDescription("This assembly contains types that are meant to be loaded only in Visual Studio 2010.")] 6 | 7 | [assembly: Guid("34795751-1417-402d-9e96-82d16bb3a625")] -------------------------------------------------------------------------------- /src/VisualStudio12/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.InteropServices; 3 | 4 | [assembly: AssemblyTitle("VisualStudio2013")] 5 | [assembly: AssemblyDescription("This assembly contains types that are meant to be loaded only in Visual Studio 2013.")] 6 | 7 | [assembly: Guid("E2F5E00C-AABA-49AF-BA9A-977FB158CCBD")] 8 | -------------------------------------------------------------------------------- /src/VisualStudio14/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.InteropServices; 3 | 4 | [assembly: AssemblyTitle("VisualStudio2014")] 5 | [assembly: AssemblyDescription("This assembly contains types that are meant to be loaded only in Visual Studio 2014.")] 6 | -------------------------------------------------------------------------------- /src/VsConsole/Console.Types/IConsoleInitializer.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Runtime.InteropServices; 3 | using System.Threading.Tasks; 4 | 5 | namespace NuGetConsole 6 | { 7 | [ComImport] 8 | [Guid("4EF0C34E-BD1F-473F-93D8-E1F90F9B3D63")] 9 | public interface IConsoleInitializer 10 | { 11 | Task Initialize(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/VsConsole/Console.Types/IConsoleStatus.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace NuGetConsole 3 | { 4 | public interface IConsoleStatus 5 | { 6 | 7 | /// 8 | /// Returns whether the console is busy executing a command. 9 | /// 10 | bool IsBusy { get; } 11 | } 12 | } -------------------------------------------------------------------------------- /src/VsConsole/Console.Types/IPathExpansion.cs: -------------------------------------------------------------------------------- 1 | namespace NuGetConsole 2 | { 3 | /// 4 | /// Simple path expansion interface. CommandExpansion tries path expansion 5 | /// if tab expansion returns no result. 6 | /// 7 | public interface IPathExpansion : ITabExpansion 8 | { 9 | SimpleExpansion GetPathExpansions(string line); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/VsConsole/Console.Types/IPowerConsoleWindow.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace NuGetConsole 3 | { 4 | /// 5 | /// MEF interface to interact with the PowerConsole tool window. 6 | /// 7 | public interface IPowerConsoleWindow 8 | { 9 | /// 10 | /// Show the tool window 11 | /// 12 | void Show(); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/VsConsole/Console.Types/ITabExpansion.cs: -------------------------------------------------------------------------------- 1 | namespace NuGetConsole 2 | { 3 | /// 4 | /// Simple (line, lastWord) based tab expansion interface. A host can implement 5 | /// this interface and reuse CommandExpansion/CommandExpansionProvider. 6 | /// 7 | public interface ITabExpansion 8 | { 9 | string[] GetExpansions(string line, string lastWord); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/VsConsole/Console/Console/IHostNameMetadata.cs: -------------------------------------------------------------------------------- 1 | namespace NuGetConsole.Implementation.Console 2 | { 3 | /// 4 | /// HostName MEF metadata viewer. 5 | /// 6 | public interface IHostNameMetadata 7 | { 8 | string HostName { get; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/VsConsole/Console/Console/IPrivateConsoleStatus.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace NuGetConsole.Implementation.Console 3 | { 4 | internal interface IPrivateConsoleStatus : IConsoleStatus 5 | { 6 | void SetBusyState(bool isBusy); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/VsConsole/Console/IHostInitializer.cs: -------------------------------------------------------------------------------- 1 | namespace NuGetConsole 2 | { 3 | internal interface IHostInitializer 4 | { 5 | void Start(); 6 | 7 | void SetDefaultRunspace(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/VsConsole/Console/Utils/EventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NuGetConsole 4 | { 5 | class EventArgs : EventArgs 6 | { 7 | public T Arg { get; private set; } 8 | 9 | public EventArgs(T arg) 10 | { 11 | this.Arg = arg; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/VsConsole/PowerShellCmdlets/FileConflictAction.cs: -------------------------------------------------------------------------------- 1 | namespace NuGet.PowerShell.Commands 2 | { 3 | public enum FileConflictAction 4 | { 5 | None, 6 | Overwrite, 7 | Ignore 8 | } 9 | } -------------------------------------------------------------------------------- /src/VsConsole/PowerShellCmdlets/ProgressActivityIds.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace NuGet.PowerShell.Commands 3 | { 4 | internal static class ProgressActivityIds 5 | { 6 | 7 | // represents the activity Id for the Get-Package command to report its progress 8 | public const int GetPackageId = 1; 9 | 10 | // represents the activity Id for download progress operation 11 | public const int DownloadPackageId = 2; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/VsConsole/PowerShellHost/IRunspaceManager.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Management.Automation.Runspaces; 3 | 4 | namespace NuGetConsole.Host.PowerShell.Implementation 5 | { 6 | internal interface IRunspaceManager 7 | { 8 | Tuple GetRunspace(IConsole console, string hostName); 9 | } 10 | } -------------------------------------------------------------------------------- /src/VsConsole/PowerShellHost/PowerShellHost.csproj.vspscc: -------------------------------------------------------------------------------- 1 | "" 2 | { 3 | "FILE_VERSION" = "9237" 4 | "ENLISTMENT_CHOICE" = "NEVER" 5 | "PROJECT_FILE_RELATIVE_PATH" = "" 6 | "NUMBER_OF_EXCLUDED_FILES" = "0" 7 | "ORIGINAL_PROJECT_FILE_PATH" = "" 8 | "NUMBER_OF_NESTED_PROJECTS" = "0" 9 | "SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER" 10 | } 11 | -------------------------------------------------------------------------------- /src/VsConsole/PowerShellHostProvider/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.InteropServices; 3 | 4 | [assembly: AssemblyTitle("PowerShellHostProvider")] 5 | [assembly: AssemblyDescription("This assembly loads the PowerShellHost when PS runtime is detected.")] 6 | 7 | // The following GUID is for the ID of the typelib if this project is exposed to COM 8 | [assembly: Guid("B37BE991-002E-4D6D-9075-11572F0445FA")] 9 | -------------------------------------------------------------------------------- /src/VsEvents/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | 4 | [assembly: AssemblyTitle("NuGetVSEvents")] 5 | [assembly: AssemblyDescription("NuGet Visual Studio Events Package")] 6 | [assembly: InternalsVisibleTo("NuGet.VsEvents.Test")] -------------------------------------------------------------------------------- /src/VsExtension/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("NuGet.Tools")] 4 | [assembly: AssemblyDescription("Visual Studio Extensibility Package (vsix)")] 5 | -------------------------------------------------------------------------------- /src/VsExtension/Resources/Toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/src/VsExtension/Resources/Toolbar.png -------------------------------------------------------------------------------- /src/VsExtension/Resources/nugetAbout.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/src/VsExtension/Resources/nugetAbout.ico -------------------------------------------------------------------------------- /src/VsExtension/Resources/nuget_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/src/VsExtension/Resources/nuget_256.png -------------------------------------------------------------------------------- /src/VsExtension/Resources/nuget_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/src/VsExtension/Resources/nuget_96.png -------------------------------------------------------------------------------- /test/CommandLine.Test/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /test/Core.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("NuGet.Test")] 4 | [assembly: AssemblyDescription("Unit Tests for NuGet")] 5 | -------------------------------------------------------------------------------- /test/Core.Test/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /test/Dialog.Test/Mocks/MockOutputConsoleProvider.cs: -------------------------------------------------------------------------------- 1 | using Moq; 2 | using NuGet.VisualStudio; 3 | using NuGetConsole; 4 | 5 | namespace NuGet.Dialog.Test 6 | { 7 | public class MockOutputConsoleProvider : IOutputConsoleProvider 8 | { 9 | public IConsole CreateOutputConsole(bool requirePowerShellHost) 10 | { 11 | return new Mock().Object; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /test/Dialog.Test/Mocks/MockVsProjectSystem.cs: -------------------------------------------------------------------------------- 1 | using NuGet.Test.Mocks; 2 | using NuGet.VisualStudio; 3 | 4 | namespace NuGet.Dialog.Test 5 | { 6 | internal class MockVsProjectSystem : MockProjectSystem, IVsProjectSystem 7 | { 8 | public string UniqueName 9 | { 10 | get { return "Unique Name"; } 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /test/Dialog.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("NuGet.Dialog.Test")] 4 | [assembly: AssemblyDescription("Unit Tests for NuGet.Dialog.dll")] 5 | -------------------------------------------------------------------------------- /test/Dialog.Test/SolutionExplorer/MockProjectUtility.cs: -------------------------------------------------------------------------------- 1 | using EnvDTE; 2 | using Moq; 3 | 4 | namespace NuGet.Dialog.Test 5 | { 6 | internal static class MockProjectUtility 7 | { 8 | public static Project CreateMockProject(string name) 9 | { 10 | var project = new Mock(); 11 | project.Setup(p => p.Name).Returns(name); 12 | return project.Object; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /test/Dialog.Test/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/AddingBindingRedirectAfterUpdate/AddingBindingRedirectAfterUpdate.dgml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/BindingRedirectDoesNotAddToSilverlightProject/files/HostSL.1.0.0/lib/sl40/HostSL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/BindingRedirectDoesNotAddToSilverlightProject/files/HostSL.1.0.0/lib/sl40/HostSL.dll -------------------------------------------------------------------------------- /test/EndToEnd/Packages/BindingRedirectDoesNotAddToSilverlightProject/files/TestSL.1.0.0/lib/sl40/TestSL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/BindingRedirectDoesNotAddToSilverlightProject/files/TestSL.1.0.0/lib/sl40/TestSL.dll -------------------------------------------------------------------------------- /test/EndToEnd/Packages/FileTransformWorksOnDependentFile/TTFile.1.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/FileTransformWorksOnDependentFile/TTFile.1.0.0.nuspec -------------------------------------------------------------------------------- /test/EndToEnd/Packages/FileTransformWorksOnDependentFile/files/test.1.0.0/content/one.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/FileTransformWorksOnDependentFile/test.1.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/FileTransformWorksOnDependentFile/test.1.0.0.nuspec -------------------------------------------------------------------------------- /test/EndToEnd/Packages/GetPackageAcceptsRelativePathSource/empty.txt: -------------------------------------------------------------------------------- 1 | This file is here so that HG recognizes and creates the parent folder. -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallFailCleansUpSatellitePackageFiles/A.1.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1.0.0 5 | Test 6 | A 7 | No description. 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallFailCleansUpSatellitePackageFiles/A.1.2.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1.2.0 5 | Test 6 | A 7 | No description. 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallLatestVersionWorksCorrectly/InstallLatestVersionWorksCorrectly.dgml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallLatestVersionWorksCorrectlyWithPrerelease/InstallLatestVersionWorksCorrectlyWithPrerelease.dgml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallMetaPackageWorksAsExpected/Dependency.1.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/InstallMetaPackageWorksAsExpected/Dependency.1.0.0.nuspec -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallMetaPackageWorksAsExpected/MetaPackage.1.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/InstallMetaPackageWorksAsExpected/MetaPackage.1.0.0.nuspec -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageAddImportStatement/files/PackageWithImport.2.0.0/build/PackageWithImport.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageAddImportStatement/files/PackageWithImport.2.0.0/build/PackageWithImport.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageDoNotUninstallDependenciesWhenSafeUpdatingDependency/Microsoft.AspNet.WebPages.Administration.2.0.20710.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/InstallPackageDoNotUninstallDependenciesWhenSafeUpdatingDependency/Microsoft.AspNet.WebPages.Administration.2.0.20710.0.nuspec -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageExecuteCorrectInstallScriptsAccordingToTargetFramework/files/TestTargetFxPSScripts.1.0.0/tools/init.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package) 2 | 3 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageExecuteCorrectInstallScriptsAccordingToTargetFramework/files/TestTargetFxPSScripts.1.0.0/tools/net40/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:InstallVar = $global:InstallVar + 1 -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageExecuteCorrectInstallScriptsAccordingToTargetFramework/files/TestTargetFxPSScripts.1.0.0/tools/net40/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | Write-Host "I'm here" 4 | 5 | $global:UninstallVar = $global:UninstallVar + 3 -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageExecuteCorrectInstallScriptsAccordingToTargetFramework/files/TestTargetFxPSScripts.1.0.0/tools/silverlight/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:InstallVar = $global:InstallVar + 100 -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageExecuteCorrectInstallScriptsAccordingToTargetFramework/files/TestTargetFxPSScripts.1.0.0/tools/silverlight/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:UninstallVar = $global:UninstallVar + 300 -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageExecuteCorrectInstallScriptsAccordingToTargetFramework2/files/TestTargetFxPSScripts.1.0.0/tools/init.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package) 2 | 3 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageExecuteCorrectInstallScriptsAccordingToTargetFramework2/files/TestTargetFxPSScripts.1.0.0/tools/net40/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:InstallVar = $global:InstallVar + 1 -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageExecuteCorrectInstallScriptsAccordingToTargetFramework2/files/TestTargetFxPSScripts.1.0.0/tools/net40/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | Write-Host "I'm here" 4 | 5 | $global:UninstallVar = $global:UninstallVar + 3 -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageExecuteCorrectInstallScriptsAccordingToTargetFramework2/files/TestTargetFxPSScripts.1.0.0/tools/silverlight/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:InstallVar = $global:InstallVar + 100 -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageExecuteCorrectInstallScriptsAccordingToTargetFramework2/files/TestTargetFxPSScripts.1.0.0/tools/silverlight/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:UninstallVar = $global:UninstallVar + 300 -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageIgnoreInitScriptIfItIsNotDirectlyUnderTools/files/TestTargetFxInvalidInitScript.1.0.0/tools/net30/init.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package) 2 | 3 | $global:InitVar = $global:InitVar + 1 4 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageIgnoreInitScriptIfItIsNotDirectlyUnderTools/files/TestTargetFxInvalidInitScript.1.0.0/tools/net30/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:InstallVar = $global:InstallVar + 1 -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageIgnoreInitScriptIfItIsNotDirectlyUnderTools/files/TestTargetFxInvalidInitScript.1.0.0/tools/net30/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | Write-Host "I'm here" 4 | 5 | $global:UninstallVar = $global:UninstallVar + 3 -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageIgnoreInitScriptIfItIsNotDirectlyUnderTools/files/TestTargetFxInvalidInitScript.1.0.0/tools/silverlight/init.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package) 2 | 3 | $global:InitVar = $global:InitVar + 1 4 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageIgnoreInitScriptIfItIsNotDirectlyUnderTools/files/TestTargetFxInvalidInitScript.1.0.0/tools/silverlight/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:InstallVar = $global:InstallVar + 100 -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageIgnoreInitScriptIfItIsNotDirectlyUnderTools/files/TestTargetFxInvalidInitScript.1.0.0/tools/silverlight/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:UninstallVar = $global:UninstallVar + 300 -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageIgnoreInitScriptIfItIsNotDirectlyUnderTools2/files/TestTargetFxInvalidInitScript.1.0.0/tools/net30/init.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package) 2 | 3 | $global:InitVar = $global:InitVar + 1 4 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageIgnoreInitScriptIfItIsNotDirectlyUnderTools2/files/TestTargetFxInvalidInitScript.1.0.0/tools/net30/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:InstallVar = $global:InstallVar + 1 -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageIgnoreInitScriptIfItIsNotDirectlyUnderTools2/files/TestTargetFxInvalidInitScript.1.0.0/tools/net30/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | Write-Host "I'm here" 4 | 5 | $global:UninstallVar = $global:UninstallVar + 3 -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageIgnoreInitScriptIfItIsNotDirectlyUnderTools2/files/TestTargetFxInvalidInitScript.1.0.0/tools/silverlight/init.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package) 2 | 3 | $global:InitVar = $global:InitVar + 1 4 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageIgnoreInitScriptIfItIsNotDirectlyUnderTools2/files/TestTargetFxInvalidInitScript.1.0.0/tools/silverlight/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:InstallVar = $global:InstallVar + 100 -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageIgnoreInitScriptIfItIsNotDirectlyUnderTools2/files/TestTargetFxInvalidInitScript.1.0.0/tools/silverlight/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:UninstallVar = $global:UninstallVar + 300 -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageRespectReferencesAccordingToDifferentFrameworks/files/RefPackage.1.0.0/lib/sl40/fear.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/InstallPackageRespectReferencesAccordingToDifferentFrameworks/files/RefPackage.1.0.0/lib/sl40/fear.dll -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageThatTargetsWindowsPhone/WpPackage.1.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/InstallPackageThatTargetsWindowsPhone/WpPackage.1.0.0.nuspec -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageWithXdtTransformTransformsTheFile/XdtPackage.1.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | XdtPackage 5 | 1.0.0.0 6 | dotnetjunky 7 | For testing. 8 | en-US 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallPackageWithXdtTransformTransformsTheFile/files/XdtPackage.1.0.0/content/web.config.install.xdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallSatellitePackageCopiesFilesToExistingRuntimePackageFolder/files/PackageWithStrongNamedLib.ja-jp.1.0/RootFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/InstallSatellitePackageCopiesFilesToExistingRuntimePackageFolder/files/PackageWithStrongNamedLib.ja-jp.1.0/RootFile.txt -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallSatellitePackageCopiesFilesToExistingRuntimePackageFolder/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/InstallSatellitePackageCopiesFilesToExistingRuntimePackageFolder/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp.txt -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallSatellitePackageCopiesFilesToExistingRuntimePackageFolder/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/InstallSatellitePackageCopiesFilesToExistingRuntimePackageFolder/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp/file.txt -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallSatellitePackageCopiesFilesToRuntimeFolderWhenInstalledAsDependency/files/PackageWithStrongNamedLib.ja-jp.1.0/RootFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/InstallSatellitePackageCopiesFilesToRuntimeFolderWhenInstalledAsDependency/files/PackageWithStrongNamedLib.ja-jp.1.0/RootFile.txt -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallSatellitePackageCopiesFilesToRuntimeFolderWhenInstalledAsDependency/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/InstallSatellitePackageCopiesFilesToRuntimeFolderWhenInstalledAsDependency/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp.txt -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallSatellitePackageCopiesFilesToRuntimeFolderWhenInstalledAsDependency/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/InstallSatellitePackageCopiesFilesToRuntimeFolderWhenInstalledAsDependency/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp/file.txt -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallingPackageWithDependencyThatFailsShouldRollbackSuccessfully/files/PackageWithBadInstallScript.1.0/tools/install.ps1: -------------------------------------------------------------------------------- 1 | throw "NOT #WINNING" -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallingSatellitePackageOnlyCopiesCultureSpecificLibFolderContents/files/PackageWithStrongNamedLib.ja-jp.1.0/RootFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/InstallingSatellitePackageOnlyCopiesCultureSpecificLibFolderContents/files/PackageWithStrongNamedLib.ja-jp.1.0/RootFile.txt -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallingSatellitePackageOnlyCopiesCultureSpecificLibFolderContents/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/InstallingSatellitePackageOnlyCopiesCultureSpecificLibFolderContents/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp.txt -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallingSatellitePackageOnlyCopiesCultureSpecificLibFolderContents/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/InstallingSatellitePackageOnlyCopiesCultureSpecificLibFolderContents/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp/file.txt -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallingSatellitePackageOnlyCopiesCultureSpecificLibFolderContents/files/PackageWithStrongNamedLib.ja-jp.1.0/lib/Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/InstallingSatellitePackageOnlyCopiesCultureSpecificLibFolderContents/files/PackageWithStrongNamedLib.ja-jp.1.0/lib/Core.resources.dll -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallingSatellitePackageOnlyCopiesCultureSpecificLibFolderContents/files/PackageWithStrongNamedLib.ja-jp.1.0/lib/ja-jp/Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/InstallingSatellitePackageOnlyCopiesCultureSpecificLibFolderContents/files/PackageWithStrongNamedLib.ja-jp.1.0/lib/ja-jp/Core.resources.dll -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallingSatellitePackageOnlyCopiesCultureSpecificLibFolderContents/files/PackageWithStrongNamedLib.ja-jp.1.0/lib/ja-jp/collision-differences.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/InstallingSatellitePackageOnlyCopiesCultureSpecificLibFolderContents/files/PackageWithStrongNamedLib.ja-jp.1.0/lib/ja-jp/collision-differences.resources.dll -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallingSatellitePackageOnlyCopiesCultureSpecificLibFolderContents/files/PackageWithStrongNamedLib.ja-jp.1.0/lib/ja-jp/collision-match.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/InstallingSatellitePackageOnlyCopiesCultureSpecificLibFolderContents/files/PackageWithStrongNamedLib.ja-jp.1.0/lib/ja-jp/collision-match.resources.dll -------------------------------------------------------------------------------- /test/EndToEnd/Packages/InstallingSatellitePackageToWebsiteCopiesResourcesToBin/Test.1.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Test 5 | 1.0 6 | NuGet 7 | Test package. 8 | en-US 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/NewtonSoftJsonWithDNX.6.0.8.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/NewtonSoftJsonWithDNX.6.0.8.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/NonStrongNameA.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/NonStrongNameA.1.0.0.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/NonStrongNameB.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/NonStrongNameB.1.0.0.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/NonStrongNameB.2.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/NonStrongNameB.2.0.0.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/OpenPackagePageTestPackage.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/OpenPackagePageTestPackage.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageInstallAcceptsRelativePathSource/empty.txt: -------------------------------------------------------------------------------- 1 | This file is here so that HG recognizes and creates the parent folder. -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageTargetingNetClientAndNet.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageTargetingNetClientAndNet.1.0.0.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithCSSourceFiles.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithCSSourceFiles.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithConfigTransformInstallToWinJsProject/files/PackageWithTransform.1.0.0/content/b.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithConfigTransformInstallToWinJsProject/files/PackageWithTransform.1.0.0/content/root/a.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithContentFile.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithContentFile.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithContentFileAndDependency.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithContentFileAndDependency.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithDependencyOnPrereleaseTestPackage.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithDependencyOnPrereleaseTestPackage.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithExeReference.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithExeReference.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithExternalDependency.0.5.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithExternalDependency.0.5.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithExternalDependency.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithExternalDependency.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithFailingInitPs1.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithFailingInitPs1.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithFileNamedAppCode.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithFileNamedAppCode.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithFolder.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithFolder.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithFooContentFile.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithFooContentFile.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithGacReferences.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithGacReferences.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithNestedAspxFiles.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithNestedAspxFiles.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithNestedAspxPPFiles.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithNestedAspxPPFiles.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithNestedFile.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithNestedFile.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithNestedReferenceFolders.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithNestedReferenceFolders.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithNet40AndSLLibButOnlySLGacRefs.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithNet40AndSLLibButOnlySLGacRefs.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithNoVersionInFolderName.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithNoVersionInFolderName.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithNonExistentGacReferences.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithNonExistentGacReferences.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithNonStrongNamedLibA.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithNonStrongNamedLibA.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithNonStrongNamedLibB.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithNonStrongNamedLibB.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithPPCSSourceFiles.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithPPCSSourceFiles.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithPPVBSourceFiles.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithPPVBSourceFiles.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithReferences.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithReferences.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithRootNamespaceFileTransform.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithRootNamespaceFileTransform.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithScripts.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithScripts.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithSourceFileUnderAppCode.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithSourceFileUnderAppCode.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithStrongNamedLib.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithStrongNamedLib.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithTextFile.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithTextFile.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithTextFile.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithTextFile.2.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithUnboundedDependency.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithUnboundedDependency.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithUnsupportedReferences.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithUnsupportedReferences.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithVBSourceFiles.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithVBSourceFiles.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithWebDebugConfig.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithWebDebugConfig.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PackageWithXmlTransformAndTokenReplacement.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PackageWithXmlTransformAndTokenReplacement.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PreReleaseTestPackage.1.0.0-a.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PreReleaseTestPackage.1.0.0-a.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PreReleaseTestPackage.1.0.0-b.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PreReleaseTestPackage.1.0.0-b.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PreReleaseTestPackage.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PreReleaseTestPackage.1.0.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PreReleaseTestPackage.1.0.1-a.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PreReleaseTestPackage.1.0.1-a.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PreReleaseTestPackage.A.1.0.0-a.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PreReleaseTestPackage.A.1.0.0-a.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/PreReleaseTestPackage.A.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/PreReleaseTestPackage.A.1.0.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallAllPackagesInAProjectInvokeUninstallAndInstallScripts/MagicPackage.1.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/ReinstallAllPackagesInAProjectInvokeUninstallAndInstallScripts/MagicPackage.1.0.0.nuspec -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallAllPackagesInAProjectInvokeUninstallAndInstallScripts/TestReinstallPackageScripts.1.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/ReinstallAllPackagesInAProjectInvokeUninstallAndInstallScripts/TestReinstallPackageScripts.1.0.0.nuspec -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallAllPackagesInAProjectInvokeUninstallAndInstallScripts/files/MagicPackage.1.0.0/tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:InstallMagicScript++ 4 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallAllPackagesInAProjectInvokeUninstallAndInstallScripts/files/MagicPackage.1.0.0/tools/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:UninstallMagicScript ++ -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallAllPackagesInAProjectInvokeUninstallAndInstallScripts/files/TestReinstallPackageScripts.1.0.0/tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:InstallScriptCount++ 4 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallAllPackagesInAProjectInvokeUninstallAndInstallScripts/files/TestReinstallPackageScripts.1.0.0/tools/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:UninstallScriptCount++ -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallAllPackagesInAllProjectsInvokeUninstallAndInstallScripts/MagicPackage.1.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/ReinstallAllPackagesInAllProjectsInvokeUninstallAndInstallScripts/MagicPackage.1.0.0.nuspec -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallAllPackagesInAllProjectsInvokeUninstallAndInstallScripts/TestReinstallPackageScripts.1.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/ReinstallAllPackagesInAllProjectsInvokeUninstallAndInstallScripts/TestReinstallPackageScripts.1.0.0.nuspec -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallAllPackagesInAllProjectsInvokeUninstallAndInstallScripts/files/MagicPackage.1.0.0/tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:InstallMagicScript++ 4 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallAllPackagesInAllProjectsInvokeUninstallAndInstallScripts/files/MagicPackage.1.0.0/tools/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:UninstallMagicScript ++ -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallAllPackagesInAllProjectsInvokeUninstallAndInstallScripts/files/TestReinstallPackageScripts.1.0.0/tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:InstallScriptCount++ 4 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallAllPackagesInAllProjectsInvokeUninstallAndInstallScripts/files/TestReinstallPackageScripts.1.0.0/tools/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:UninstallScriptCount++ -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallPackageInAllProjectsInvokeUninstallAndInstallScripts/TestReinstallPackageScripts.1.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/ReinstallPackageInAllProjectsInvokeUninstallAndInstallScripts/TestReinstallPackageScripts.1.0.0.nuspec -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallPackageInAllProjectsInvokeUninstallAndInstallScripts/files/TestReinstallPackageScripts.1.0.0/tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:InstallScriptCount++ 4 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallPackageInAllProjectsInvokeUninstallAndInstallScripts/files/TestReinstallPackageScripts.1.0.0/tools/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:UninstallScriptCount++ -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallPackageInvokeUninstallAndInstallScripts/TestReinstallPackageScripts.1.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/ReinstallPackageInvokeUninstallAndInstallScripts/TestReinstallPackageScripts.1.0.0.nuspec -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallPackageInvokeUninstallAndInstallScripts/files/TestReinstallPackageScripts.1.0.0/tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:InstallScriptCount++ 4 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallPackageInvokeUninstallAndInstallScripts/files/TestReinstallPackageScripts.1.0.0/tools/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $global:UninstallScriptCount++ -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallPackageReinstallPrereleaseDependencyPackages/A.1.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/ReinstallPackageReinstallPrereleaseDependencyPackages/A.1.0.0.nuspec -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReinstallPackageReinstallPrereleaseDependencyPackages/B.2.0.0-beta.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/ReinstallPackageReinstallPrereleaseDependencyPackages/B.2.0.0-beta.nuspec -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ReleaseNotesPackage.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/ReleaseNotesPackage.2.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/SkypePackage.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/SkypePackage.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/SkypePackage.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/SkypePackage.3.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/SolutionLevelPkg.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/SolutionLevelPkg.1.0.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/SolutionOnlyPackage.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/SolutionOnlyPackage.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/SolutionOnlyPackage.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/SolutionOnlyPackage.2.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/TabExpansionForPrereleasePackages/MyPackage.1.0.0-alpha.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/TabExpansionForPrereleasePackages/MyPackage.1.0.0-alpha.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/TestUninstallThrowPackage.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/TestUninstallThrowPackage.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/TestUpdatePackage.1.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/TestUpdatePackage.1.0.1.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/TestUpdatePackage.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/TestUpdatePackage.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/TestUpdatePackage.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/TestUpdatePackage.2.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/TestUpdateSecondPackage.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/TestUpdateSecondPackage.1.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/TestUpdateSecondPackage.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/TestUpdateSecondPackage.2.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ToolsPathForInitAndInstallScriptPointToToolsFolder/files/PackageA.1.0.0/tools/init.ps1: -------------------------------------------------------------------------------- 1 | param($rootPath, $toolsPath, $package) 2 | 3 | $scriptPath = $script:MyInvocation.MyCommand.Path 4 | 5 | $path = Join-Path $toolsPath "init.ps1" 6 | 7 | if ($scriptPath -ne $path) 8 | { 9 | throw "'$toolsPath' value is wrong." 10 | } -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ToolsPathForInitAndInstallScriptPointToToolsFolder/files/PackageA.1.0.0/tools/net40/install.ps1: -------------------------------------------------------------------------------- 1 | param($rootPath, $toolsPath, $package) 2 | 3 | $scriptPath = $script:MyInvocation.MyCommand.Path 4 | 5 | $path = Join-Path $toolsPath "install.ps1" 6 | 7 | if ($scriptPath -ne $path) 8 | { 9 | throw "'$toolsPath' value is wrong." 10 | } -------------------------------------------------------------------------------- /test/EndToEnd/Packages/ToolsPathForUninstallScriptPointToToolsFolder/files/PackageA.1.0.0/tools/sl4/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($rootPath, $toolsPath, $package) 2 | 3 | $scriptPath = $script:MyInvocation.MyCommand.Path 4 | 5 | Write-Host "uninstall is running" 6 | 7 | $path = Join-Path $toolsPath "uninstall.ps1" 8 | 9 | if ($scriptPath -ne $path) 10 | { 11 | throw "'$toolsPath' value is wrong." 12 | } -------------------------------------------------------------------------------- /test/EndToEnd/Packages/TwoUnknownFramework.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/TwoUnknownFramework.1.0.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UnInstallPackageWithXdtTransformUnTransformsTheFile/files/XdtPackage.1.0.0/content/web.config.install.xdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UnInstallPackageWithXdtTransformUnTransformsTheFile/files/XdtPackage.1.0.0/content/web.config.uninstall.xdt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UninstallPackageRemoveImportStatement/files/PackageWithImport.2.0.0/build/PackageWithImport.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UninstallPackageRemoveImportStatement/files/PackageWithImport.2.0.0/build/PackageWithImport.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UninstallPackageUseTargetFxPersistedInPackagesConfigToInvokeUninstallScript/files/PackageA.1.0.0/tools/net35/uninstall.ps1: -------------------------------------------------------------------------------- 1 | 2 | 3 | $global:UninstallVar = $global:UninstallVar + 10; -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UninstallPackageUseTargetFxPersistedInPackagesConfigToInvokeUninstallScript/files/PackageA.1.0.0/tools/net40/install.ps1: -------------------------------------------------------------------------------- 1 | Write-Host "Hello this crazy world." -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UninstallPackageUseTargetFxPersistedInPackagesConfigToInvokeUninstallScript/files/PackageA.1.0.0/tools/net40/uninstall.ps1: -------------------------------------------------------------------------------- 1 | 2 | 3 | $global:UninstallVar = $global:UninstallVar + 1; -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UninstallSatellitePackageDoNotRemoveCollidingRuntimeFilesWhenContentsDiffer/files/PackageWithStrongNamedLib.1.1/lib/ja-jp/collision-differences.txt: -------------------------------------------------------------------------------- 1 | Differs from the ja-jp package -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UninstallSatellitePackageDoRemoveCollidingRuntimeFilesWhenContentsMatch/files/PackageWithStrongNamedLib.ja-jp.1.0/RootFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/UninstallSatellitePackageDoRemoveCollidingRuntimeFilesWhenContentsMatch/files/PackageWithStrongNamedLib.ja-jp.1.0/RootFile.txt -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UninstallSatellitePackageDoRemoveCollidingRuntimeFilesWhenContentsMatch/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/UninstallSatellitePackageDoRemoveCollidingRuntimeFilesWhenContentsMatch/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp.txt -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UninstallSatellitePackageDoRemoveCollidingRuntimeFilesWhenContentsMatch/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/UninstallSatellitePackageDoRemoveCollidingRuntimeFilesWhenContentsMatch/files/PackageWithStrongNamedLib.ja-jp.1.0/content/ja-jp/file.txt -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UpdatePackageAcceptsRelativePathSource/SkypePackage.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/UpdatePackageAcceptsRelativePathSource/SkypePackage.2.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UpdatePackageAcceptsRelativePathSource2/empty.txt: -------------------------------------------------------------------------------- 1 | This file is here so that HG recognizes and creates the parent folder. -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UpdatingMetaPackageRemovesSatelliteReferences/A.1.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1.0.0 5 | Test 6 | A 7 | No description. 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UpdatingMetaPackageRemovesSatelliteReferences/A.2.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 2.0.0 5 | Test 6 | A 7 | No description. 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UpdatingPackagesWithDependenciesOnSatellitePackages/Localized.1.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Localized 5 | 1.0 6 | test 7 | Package description 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UpdatingPackagesWithDependenciesOnSatellitePackages/Localized.2.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Localized 5 | 2.0 6 | test 7 | Package description 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UpdatingPackagesWithDependenciesOnSatellitePackages/Localized.LangPack.1.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Localized.LangPack 5 | 1.0 6 | test 7 | Package description 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UpdatingPackagesWithDependenciesOnSatellitePackages/Localized.LangPack.2.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Localized.LangPack 5 | 2.0 6 | test 7 | Package description 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UpdatingSatellitePackageUpdatesReferences/Localized.1.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Localized 5 | 1.0 6 | test 7 | Package description 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UpdatingSatellitePackageUpdatesReferences/Localized.2.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Localized 5 | 2.0 6 | test 7 | Package description 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UpdatingSatellitePackageWhenMultipleVersionsInstalled/Localized.1.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Localized 5 | 1.0 6 | test 7 | Package description 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UpdatingSatellitePackageWhenMultipleVersionsInstalled/Localized.2.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Localized 5 | 2.0 6 | test 7 | Package description 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/UpdatingSatellitePackageWhenMultipleVersionsInstalled/Localized.3.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Localized 5 | 3.0 6 | test 7 | Package description 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /test/EndToEnd/Packages/netfx-Guard.1.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/Packages/netfx-Guard.1.2.0.0.nupkg -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/ClassLibrary.zip/class1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | $if$ ($targetframeworkversion$ >= 3.5)using System.Linq; 4 | $endif$using System.Text; 5 | 6 | namespace $safeprojectname$ 7 | { 8 | public class Class1 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/ConsoleApplication.zip/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $if$ ($targetframeworkversion$ >= 4.0)$endif$$if$ ($targetframeworkversion$ < 4.0)$endif$ 5 | 6 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/ConsoleApplication.zip/program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | $if$ ($targetframeworkversion$ >= 3.5)using System.Linq; 4 | $endif$using System.Text; 5 | 6 | namespace $safeprojectname$ 7 | { 8 | class Program 9 | { 10 | static void Main(string[] args) 11 | { 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplication.zip/Application_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/CppWinStoreApplication.zip/Application_TemporaryKey.pfx -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplication.zip/BlankApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/CppWinStoreApplication.zip/BlankApp.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplication.zip/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/CppWinStoreApplication.zip/Logo.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplication.zip/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/CppWinStoreApplication.zip/SmallLogo.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplication.zip/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/CppWinStoreApplication.zip/SplashScreen.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplication.zip/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/CppWinStoreApplication.zip/StoreLogo.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplication.zip/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // pch.cpp 3 | // Include the standard header and generate the precompiled header. 4 | // 5 | 6 | #include "pch.h" 7 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplication.zip/pch.h: -------------------------------------------------------------------------------- 1 | // 2 | // pch.h 3 | // Header for standard system include files. 4 | // 5 | 6 | #pragma once 7 | 8 | #include 9 | #include "App.xaml.h" 10 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplicationBlue.zip/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplicationBlue.zip/Application_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/CppWinStoreApplicationBlue.zip/Application_TemporaryKey.pfx -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplicationBlue.zip/BlankApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/CppWinStoreApplicationBlue.zip/BlankApp.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplicationBlue.zip/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/CppWinStoreApplicationBlue.zip/Logo.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplicationBlue.zip/MainPage.xaml.h: -------------------------------------------------------------------------------- 1 | // 2 | // MainPage.xaml.h 3 | // Declaration of the MainPage class. 4 | // 5 | 6 | #pragma once 7 | 8 | #include "MainPage.g.h" 9 | 10 | namespace $safeprojectname$ 11 | { 12 | /// 13 | /// An empty page that can be used on its own or navigated to within a Frame. 14 | /// 15 | public ref class MainPage sealed 16 | { 17 | public: 18 | MainPage(); 19 | 20 | }; 21 | } 22 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplicationBlue.zip/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/CppWinStoreApplicationBlue.zip/SmallLogo.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplicationBlue.zip/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/CppWinStoreApplicationBlue.zip/SplashScreen.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplicationBlue.zip/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/CppWinStoreApplicationBlue.zip/StoreLogo.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplicationBlue.zip/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // pch.cpp 3 | // Include the standard header and generate the precompiled header. 4 | // 5 | 6 | #include "pch.h" 7 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplicationBlue.zip/pch.h: -------------------------------------------------------------------------------- 1 | // 2 | // pch.h 3 | // Header for standard system include files. 4 | // 5 | 6 | #pragma once 7 | 8 | #include 9 | #include 10 | 11 | #include "App.xaml.h" 12 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplication_Dev14.zip/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplication_Dev14.zip/Application_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/CppWinStoreApplication_Dev14.zip/Application_TemporaryKey.pfx -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplication_Dev14.zip/BlankApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/CppWinStoreApplication_Dev14.zip/BlankApp.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplication_Dev14.zip/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/CppWinStoreApplication_Dev14.zip/Logo.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplication_Dev14.zip/MainPage.xaml.h: -------------------------------------------------------------------------------- 1 | // 2 | // MainPage.xaml.h 3 | // Declaration of the MainPage class. 4 | // 5 | 6 | #pragma once 7 | 8 | #include "MainPage.g.h" 9 | 10 | namespace $safeprojectname$ 11 | { 12 | /// 13 | /// An empty page that can be used on its own or navigated to within a Frame. 14 | /// 15 | public ref class MainPage sealed 16 | { 17 | public: 18 | MainPage(); 19 | 20 | }; 21 | } 22 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplication_Dev14.zip/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/CppWinStoreApplication_Dev14.zip/SmallLogo.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplication_Dev14.zip/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/CppWinStoreApplication_Dev14.zip/SplashScreen.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplication_Dev14.zip/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/CppWinStoreApplication_Dev14.zip/StoreLogo.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplication_Dev14.zip/pch.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // pch.cpp 3 | // Include the standard header and generate the precompiled header. 4 | // 5 | 6 | #include "pch.h" 7 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/CppWinStoreApplication_Dev14.zip/pch.h: -------------------------------------------------------------------------------- 1 | // 2 | // pch.h 3 | // Header for standard system include files. 4 | // 5 | 6 | #pragma once 7 | 8 | #include 9 | #include 10 | 11 | #include "App.xaml.h" 12 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/EmptyMvcWebApplicationProjectTemplatev2.0.cs.zip/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.$languageext$" Inherits="$safeprojectname$.$globalclassname$" Language="$language$" %> 2 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/EmptyMvcWebApplicationProjectTemplatev4.0.csaspx.zip/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Mvc; 3 | 4 | namespace $safeprojectname$ 5 | { 6 | public class FilterConfig 7 | { 8 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 9 | { 10 | filters.Add(new HandleErrorAttribute()); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/EmptyMvcWebApplicationProjectTemplatev4.0.csaspx.zip/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.$languageext$" Inherits="$safeprojectname$.$globalclassname$" Language="$language$" %> 2 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/EmptyProject.zip/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $if$ ($targetframeworkversion$ >= 4.0)$endif$$if$ ($targetframeworkversion$ < 4.0)$endif$ 5 | 6 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/EmptyWeb.zip/EmptyWeb.webproj: -------------------------------------------------------------------------------- 1 | C# 2 | $targetframeworkversion$ -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/FSharpConsoleApplication.zip/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $if$ ($targetframeworkversion$ >= 4.0)$endif$$if$ ($targetframeworkversion$ < 4.0)$endif$ 5 | 6 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/FSharpConsoleApplication.zip/Program.fs: -------------------------------------------------------------------------------- 1 | // Learn more about F# at http://fsharp.net 2 | 3 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/FSharpLibrary.zip/Module1.fs: -------------------------------------------------------------------------------- 1 | // Learn more about F# at http://fsharp.net 2 | 3 | module Module1 4 | 5 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/FSharpLibrary.zip/Script.fsx: -------------------------------------------------------------------------------- 1 | // This file is a script that can be executed with the F# Interactive. 2 | // It can be used to explore and test the library project. 3 | // Note that script files will not be part of the project build. 4 | 5 | #load "Module1.fs" 6 | open Module1 7 | 8 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/Client.packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/Content.Web.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/Proxies.lsml: -------------------------------------------------------------------------------- 1 |  2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/Server.packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/Web.Debug.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/Web.Release.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/ajax-loader.gif -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/icons-18-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/icons-18-black.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/icons-18-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/icons-18-white.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/icons-36-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/icons-36-black.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/icons-36-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/icons-36-white.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/jquery.mobile-1.3.0-vsdoc.js: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is intentionally blank to avoid running the real 3 | * jQuery Mobile library code when processing for intellisense. 4 | */ 5 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/jquery.mobile-1.3.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/jquery.mobile-1.3.0.min.js -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/msls-black-icons-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/msls-black-icons-18.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/msls-black-icons-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/msls-black-icons-36.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/msls-loader-dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/msls-loader-dark.gif -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/msls-loader-light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/msls-loader-light.gif -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/msls-white-icons-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/msls-white-icons-18.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/msls-white-icons-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/msls-white-icons-36.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/user-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/user-logo.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/user-splash-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/JScriptVisualBasicLightSwitchProjectTemplate.zip/user-splash-screen.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/PortableClassLibrary.zip/class1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace $safeprojectname$ 7 | { 8 | public class Class1 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/PortableLib.zip/Class1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace $safeprojectname$ 7 | { 8 | public class Class1 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/PortableLib.zip/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/PortableLib.zip/__TemplateIcon.ico -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/SilverlightClassLibrary.zip/Class1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Net; 3 | using System.Windows; 4 | using System.Windows.Controls; 5 | using System.Windows.Documents; 6 | using System.Windows.Ink; 7 | using System.Windows.Input; 8 | using System.Windows.Media; 9 | using System.Windows.Media.Animation; 10 | using System.Windows.Shapes; 11 | 12 | namespace $safeprojectname$ 13 | { 14 | public class Class1 15 | { 16 | 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/SilverlightProject.zip/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/SilverlightProject.zip/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/VBConsoleApplication.zip/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $if$ ($targetframeworkversion$ >= 4.0)$endif$$if$ ($targetframeworkversion$ < 4.0)$endif$ 5 | 6 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/VBConsoleApplication.zip/Module1.vb: -------------------------------------------------------------------------------- 1 | Module $safeitemname$ 2 | 3 | Sub Main() 4 | 5 | End Sub 6 | 7 | End Module 8 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/VBConsoleApplication.zip/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WPFApplication.zip/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $if$ ($targetframeworkversion$ >= 4.0)$endif$$if$ ($targetframeworkversion$ < 4.0)$endif$ 5 | 6 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WPFApplication.zip/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WPFApplication.zip/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | $if$ ($targetframeworkversion$ >= 3.5)using System.Linq; 6 | $endif$using System.Windows; 7 | 8 | namespace $safeprojectname$ 9 | { 10 | /// 11 | /// Interaction logic for App.xaml 12 | /// 13 | public partial class App : Application 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WPFApplication.zip/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WPFApplication.zip/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WebApplicationProject20.zip/Default.aspx.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | $if$ ($targetframeworkversion$ >= 3.5)using System.Linq; 4 | $endif$using System.Web; 5 | using System.Web.UI; 6 | using System.Web.UI.WebControls; 7 | 8 | namespace $safeprojectname$ 9 | { 10 | public partial class _Default : System.Web.UI.Page 11 | { 12 | protected void Page_Load(object sender, EventArgs e) 13 | { 14 | 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WebApplicationProject40.zip/About.aspx.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.UI; 6 | using System.Web.UI.WebControls; 7 | 8 | namespace $safeprojectname$ 9 | { 10 | public partial class About : System.Web.UI.Page 11 | { 12 | protected void Page_Load(object sender, EventArgs e) 13 | { 14 | 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WebApplicationProject40.zip/Account/ChangePassword.aspx.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.UI; 6 | using System.Web.UI.WebControls; 7 | 8 | namespace $safeprojectname$.Account 9 | { 10 | public partial class ChangePassword : System.Web.UI.Page 11 | { 12 | protected void Page_Load(object sender, EventArgs e) 13 | { 14 | 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WebApplicationProject40.zip/Account/Web.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WebApplicationProject40.zip/Default.aspx.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.UI; 6 | using System.Web.UI.WebControls; 7 | 8 | namespace $safeprojectname$ 9 | { 10 | public partial class _Default : System.Web.UI.Page 11 | { 12 | protected void Page_Load(object sender, EventArgs e) 13 | { 14 | 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WebApplicationProject40.zip/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="$safeprojectname$.Global" Language="C#" %> 2 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WebApplicationProject40.zip/Site.Master.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.UI; 6 | using System.Web.UI.WebControls; 7 | 8 | namespace $safeprojectname$ 9 | { 10 | public partial class SiteMaster : System.Web.UI.MasterPage 11 | { 12 | protected void Page_Load(object sender, EventArgs e) 13 | { 14 | 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJS.zip/Application_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJS.zip/Application_TemporaryKey.pfx -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJS.zip/blankwj.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJS.zip/blankwj.ico -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJS.zip/blankwj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJS.zip/blankwj.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJS.zip/default.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | 4 | @media screen and (-ms-view-state: fullscreen-landscape) { 5 | } 6 | 7 | @media screen and (-ms-view-state: filled) { 8 | } 9 | 10 | @media screen and (-ms-view-state: snapped) { 11 | } 12 | 13 | @media screen and (-ms-view-state: fullscreen-portrait) { 14 | } 15 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJS.zip/logo@scale-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJS.zip/logo@scale-1x.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJS.zip/smalllogo@scale-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJS.zip/smalllogo@scale-1x.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJS.zip/splashscreen@scale-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJS.zip/splashscreen@scale-1x.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJS.zip/storelogo@scale-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJS.zip/storelogo@scale-1x.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJS_Dev14.zip/Application_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJS_Dev14.zip/Application_TemporaryKey.pfx -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJS_Dev14.zip/blankwj.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJS_Dev14.zip/blankwj.ico -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJS_Dev14.zip/blankwj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJS_Dev14.zip/blankwj.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJS_Dev14.zip/default.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJS_Dev14.zip/logo@scale-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJS_Dev14.zip/logo@scale-1x.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJS_Dev14.zip/smalllogo@scale-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJS_Dev14.zip/smalllogo@scale-1x.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJS_Dev14.zip/splashscreen@scale-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJS_Dev14.zip/splashscreen@scale-1x.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJS_Dev14.zip/storelogo@scale-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJS_Dev14.zip/storelogo@scale-1x.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJsBlue.zip/Application_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJsBlue.zip/Application_TemporaryKey.pfx -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJsBlue.zip/blankwj.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJsBlue.zip/blankwj.ico -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJsBlue.zip/blankwj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJsBlue.zip/blankwj.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJsBlue.zip/default.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJsBlue.zip/logo@scale-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJsBlue.zip/logo@scale-1x.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJsBlue.zip/smalllogo@scale-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJsBlue.zip/smalllogo@scale-1x.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJsBlue.zip/splashscreen@scale-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJsBlue.zip/splashscreen@scale-1x.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WinJsBlue.zip/storelogo@scale-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WinJsBlue.zip/storelogo@scale-1x.png -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WindowsApplication.zip/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $if$ ($targetframeworkversion$ >= 4.0)$endif$$if$ ($targetframeworkversion$ < 4.0)$endif$ 5 | 6 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WindowsApplication.zip/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WindowsPhoneApp81JS.zip/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WindowsPhoneApp81JS.zip/__TemplateIcon.ico -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WindowsPhoneClassLibrary.zip/__templateicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/EndToEnd/ProjectTemplates/WindowsPhoneClassLibrary.zip/__templateicon.ico -------------------------------------------------------------------------------- /test/EndToEnd/ProjectTemplates/WindowsPhoneClassLibrary.zip/class1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Net; 3 | using System.Windows; 4 | using System.Windows.Controls; 5 | using System.Windows.Documents; 6 | using System.Windows.Ink; 7 | using System.Windows.Input; 8 | using System.Windows.Media; 9 | using System.Windows.Media.Animation; 10 | using System.Windows.Shapes; 11 | 12 | namespace $safeprojectname$ 13 | { 14 | public class Class1 15 | { 16 | 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /test/EndToEnd/utility.ps1: -------------------------------------------------------------------------------- 1 | function New-Guid { 2 | [System.Guid]::NewGuid().ToString("d").Substring(0, 4).Replace("-", "") 3 | } 4 | -------------------------------------------------------------------------------- /test/PowerShellCmdlets.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/PowerShellCmdlets.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/PowerShellCmdlets.Test/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /test/PowerShellHost.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | // General Information about an assembly is controlled through the following 4 | // set of attributes. Change these attribute values to modify the information 5 | // associated with an assembly. 6 | [assembly: AssemblyTitle("NuGet.PowerShellHost.Test")] -------------------------------------------------------------------------------- /test/PowerShellHost.Test/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /test/Server.Test/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /test/TeamFoundationServer.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("NuGet.TeamFoundationServer.Test")] 4 | [assembly: AssemblyDescription("Unit tests for NuGet.TeamFoundationServer")] -------------------------------------------------------------------------------- /test/TeamFoundationServer.Test/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /test/Test.Integration/NuGetCommandLine/NuGetCommandLineTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/Test.Integration/NuGetCommandLine/NuGetCommandLineTest.cs -------------------------------------------------------------------------------- /test/Test.Integration/NuGetCommandLine/NugetProgramStatic.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NuGet.Test.Integration.NuGetCommandLine 4 | { 5 | public class NugetProgramStatic : IDisposable 6 | { 7 | public NugetProgramStatic() 8 | { 9 | Program.IgnoreExtensions = true; 10 | } 11 | 12 | public void Dispose() 13 | { 14 | Program.IgnoreExtensions = false; 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /test/Test.Integration/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("NuGet.Test.Integration")] 4 | [assembly: AssemblyDescription("Integration Tests for NuGet")] 5 | -------------------------------------------------------------------------------- /test/Test.Integration/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /test/Test.Utility/Capture.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace NuGet.Test 4 | { 5 | public static class Capture 6 | { 7 | public static Exception Exception(Action act) 8 | { 9 | Exception ex = null; 10 | try 11 | { 12 | act(); 13 | } 14 | catch (Exception exc) 15 | { 16 | ex = exc; 17 | } 18 | 19 | return ex; 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /test/Test.Utility/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | // General Information about an assembly is controlled through the following 4 | // set of attributes. Change these attribute values to modify the information 5 | // associated with an assembly. 6 | [assembly: AssemblyTitle("NuGet.Test.Utility")] 7 | -------------------------------------------------------------------------------- /test/Test.Utility/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /test/TestUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyTitle("NuGet.TestUI")] 4 | [assembly: AssemblyDescription("Test UI for NuGet")] 5 | -------------------------------------------------------------------------------- /test/TestUI/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /test/VisualStudio.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuGet/NuGet2/875e7a4576d46785a8f2990b466e5add0229a726/test/VisualStudio.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/VisualStudio.Test/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /test/VisualStudio11.Test/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /test/VsEvents.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.InteropServices; 3 | 4 | [assembly: AssemblyTitle("NuGet.VsEvents.Test")] 5 | [assembly: AssemblyDescription("Unit tests for NUGet.VsEvents.dll")] -------------------------------------------------------------------------------- /test/VsEvents.Test/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | --------------------------------------------------------------------------------