Skip to content
This repository has been archived by the owner on Feb 16, 2018. It is now read-only.

Commit

Permalink
renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
monoman committed Nov 3, 2010
1 parent 301f52f commit 17210dd
Show file tree
Hide file tree
Showing 3 changed files with 162 additions and 7 deletions.
155 changes: 155 additions & 0 deletions NuGet/NuPack.Core/NuGet.Core.csproj
@@ -0,0 +1,155 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\Build\NuPack.Settings.targets" />
<PropertyGroup>
<ProjectGuid>{F879F274-EFA0-4157-8404-33A19B4E6AEC}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NuGet</RootNamespace>
<AssemblyName>NuGet.Core</AssemblyName>
<CodeAnalysisRuleSet>..\NuPack.ruleset</CodeAnalysisRuleSet>
<RunCodeAnalysis Condition="'$(EnableCodeAnalysis)'=='true'">true</RunCodeAnalysis>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="..\Common\CommonResources.resx">
<Link>Common\CommonResources.resx</Link>
<DependentUpon>CommonResources.cs</DependentUpon>
<LastGenOutput>CommonResources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="Resources\NuGetResources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>NuGetResources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Compile Include="..\Common\CommonResources.cs">
<Link>Common\CommonResources.cs</Link>
</Compile>
<Compile Include="..\Common\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\Common\GlobalSuppressions.cs">
<Link>Common\GlobalSuppressions.cs</Link>
</Compile>
<Compile Include="Authoring\IPackageBuilder.cs" />
<Compile Include="Authoring\ManifestDependency.cs" />
<Compile Include="Authoring\ManifestFile.cs" />
<Compile Include="Authoring\ManifestMetadata.cs" />
<Compile Include="IPackageManager.cs" />
<Compile Include="IProjectManager.cs" />
<Compile Include="Packages\IPackageMetadata.cs" />
<Compile Include="PackageWalker\DependencyResolver.cs" />
<Compile Include="PackageWalker\IPackageOperationResolver.cs" />
<Compile Include="PackageWalker\IDependentsResolver.cs" />
<Compile Include="PackageWalker\PackageAction.cs" />
<Compile Include="PackageWalker\PackageOperation.cs" />
<Compile Include="PackageWalker\PackageTargets.cs" />
<Compile Include="PackageWalker\PackageWalkInfo.cs" />
<Compile Include="Repositories\AggregateQuery.cs" />
<Compile Include="Repositories\AggregateRepository.cs" />
<Compile Include="Repositories\BufferedEnumerable.cs" />
<Compile Include="Repositories\ExpressionRewriter.cs" />
<Compile Include="Repositories\IPackageRepositoryFactory.cs" />
<Compile Include="Repositories\AggregateEnumerable.cs" />
<Compile Include="Repositories\OrderingComparer.cs" />
<Compile Include="Utility\CollectionExtensions.cs" />
<Compile Include="FileModifiers\Preprocessor.cs" />
<Compile Include="FileModifiers\XmlTransfomer.cs" />
<Reference Include="System" />
<Reference Include="System.ComponentModel.DataAnnotations" />
<Reference Include="System.Core" />
<Reference Include="System.Data.Services.Client" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.ServiceModel" />
<Reference Include="System.Xml.Linq" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Xml" />
<Reference Include="WindowsBase" />
</ItemGroup>
<ItemGroup>
<Compile Include="Authoring\PathSearchFilter.cs" />
<Compile Include="Logging\NullLogger.cs" />
<Compile Include="Logging\ILogger.cs" />
<Compile Include="PackageOperationEventArgs.cs" />
<Compile Include="Logging\MessageLevel.cs" />
<Compile Include="PackageManager.cs" />
<Compile Include="Authoring\PhysicalPackageFile.cs" />
<Compile Include="Authoring\PackageBuilder.cs" />
<Compile Include="Authoring\PathResolver.cs" />
<Compile Include="Authoring\Manifest.cs" />
<Compile Include="PackageSource\PackageSource.cs" />
<Compile Include="Packages\DataServicePackage.cs" />
<Compile Include="Packages\DefaultPackagePathResolver.cs" />
<Compile Include="Packages\IPackage.cs" />
<Compile Include="Packages\IPackagePathResolver.cs" />
<Compile Include="ProjectManager.cs" />
<Compile Include="FileModifiers\IPackageFileTransformer.cs" />
<Compile Include="Repositories\DataServicePackageRepository.cs" />
<Compile Include="Utility\HttpWebRequestor.cs" />
<Compile Include="Utility\PackageComparer.cs" />
<Compile Include="PackageWalker\PackageMarker.cs" />
<Compile Include="Packages\ZipPackage.cs" />
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="Packages\IPackageAssemblyReference.cs" />
<Compile Include="Packages\ZipPackageAssemblyReference.cs" />
<Compile Include="PackageWalker\PackageWalker.cs" />
<Compile Include="PackageWalker\InstallWalker.cs" />
<Compile Include="PackageWalker\ProjectInstallWalker.cs" />
<Compile Include="PackageWalker\DependentsWalker.cs" />
<Compile Include="PackageWalker\UninstallWalker.cs" />
<Compile Include="ProjectSystem\IFileSystem.cs" />
<Compile Include="Repositories\PackageReferenceRepository.cs" />
<Compile Include="Utility\PackageExtensions.cs" />
<Compile Include="Repositories\PackageRepositoryExtensions.cs" />
<Compile Include="Utility\FileSystemExtensions.cs" />
<Compile Include="Repositories\PackageRepositoryFactory.cs" />
<Compile Include="Resources\NuGetResources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>NuGetResources.resx</DependentUpon>
</Compile>
<Compile Include="Utility\ProjectSystemExtensions.cs" />
<Compile Include="Utility\QueryableHelper.cs" />
<Compile Include="Utility\StreamExtensions.cs" />
<Compile Include="Utility\XmlUtility.cs" />
<Compile Include="ProjectSystem\ProjectSystem.cs" />
<Compile Include="Repositories\PackageRepositoryBase.cs" />
<Compile Include="ProjectSystem\FileBasedProjectSystem.cs" />
<Compile Include="Repositories\IPackageRepository.cs" />
<Compile Include="Packages\Constants.cs" />
<Compile Include="Packages\IPackageFile.cs" />
<Compile Include="Packages\PackageDependency.cs" />
<Compile Include="Utility\Crc32.cs" />
<Compile Include="Repositories\LocalPackageRepository.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Utility\UriHelper.cs" />
<Compile Include="Utility\Utility.cs" />
<Compile Include="Utility\XElementExtensions.cs" />
<Compile Include="Packages\ZipPackageFile.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Authoring\nuspec.xsd">
<SubType>Designer</SubType>
</None>
<None Include="Class diagrams\Packages.cd" />
<None Include="Class diagrams\PackageWalkers.cd" />
<None Include="Class diagrams\Repositories.cd" />
</ItemGroup>
<ItemGroup>
<CodeAnalysisDictionary Include="..\CodeAnalysisDictionary.xml">
<Link>Properties\CodeAnalysisDictionary.xml</Link>
</CodeAnalysisDictionary>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
4 changes: 2 additions & 2 deletions PackageReferenceAddin.csproj
Expand Up @@ -80,9 +80,9 @@
<None Include="LICENSE.txt" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="NuGet\NuPack.Core\NuPack.Core.csproj">
<ProjectReference Include="NuGet\NuPack.Core\NuGet.Core.csproj">
<Project>{F879F274-EFA0-4157-8404-33A19B4E6AEC}</Project>
<Name>NuPack.Core</Name>
<Name>NuGet.Core</Name>
</ProjectReference>
</ItemGroup>
<ProjectExtensions>
Expand Down
10 changes: 5 additions & 5 deletions PackageReferenceAddin.sln
@@ -1,9 +1,9 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
# Visual Web Developer Express 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PackageReferenceAddin", "PackageReferenceAddin.csproj", "{B3FE612E-260C-40BC-8E2E-C5653F531AAA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NuPack.Core", "NuGet\NuPack.Core\NuPack.Core.csproj", "{F879F274-EFA0-4157-8404-33A19B4E6AEC}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NuGet.Core", "NuGet\NuPack.Core\NuGet.Core.csproj", "{F879F274-EFA0-4157-8404-33A19B4E6AEC}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -18,10 +18,10 @@ Global
{F879F274-EFA0-4157-8404-33A19B4E6AEC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F879F274-EFA0-4157-8404-33A19B4E6AEC}.Release|Any CPU.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
StartupItem = PackageReferenceAddin.csproj
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
StartupItem = PackageReferenceAddin.csproj
EndGlobalSection
EndGlobal

0 comments on commit 17210dd

Please sign in to comment.