Created
April 21, 2015 12:51
-
-
Save theimowski/747df0d7d11a0a5cde47 to your computer and use it in GitHub Desktop.
Mess after Install / uninstall top 100 nuget packages in VS on empty C# project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<configuration> | |
<configSections> | |
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> | |
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --></configSections> | |
<startup> | |
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1" /> | |
</startup> | |
<entityFramework> | |
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework"> | |
<parameters> | |
<parameter value="mssqllocaldb" /> | |
</parameters> | |
</defaultConnectionFactory> | |
<providers> | |
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" /> | |
</providers> | |
</entityFramework> | |
<runtime> | |
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | |
<dependentAssembly> | |
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> | |
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" /> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" culture="neutral" /> | |
<bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" /> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" culture="neutral" /> | |
<bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" /> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" culture="neutral" /> | |
<bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" /> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" /> | |
<bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" /> | |
</dependentAssembly> | |
<dependentAssembly> | |
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" culture="neutral" /> | |
<bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" /> | |
</dependentAssembly> | |
</assemblyBinding> | |
</runtime> | |
<system.serviceModel> | |
<extensions> | |
<!-- In this extension section we are introducing all known service bus extensions. User can remove the ones they don't need. --> | |
<behaviorExtensions> | |
<add name="connectionStatusBehavior" type="Microsoft.ServiceBus.Configuration.ConnectionStatusElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> | |
<add name="transportClientEndpointBehavior" type="Microsoft.ServiceBus.Configuration.TransportClientEndpointBehaviorElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> | |
<add name="serviceRegistrySettings" type="Microsoft.ServiceBus.Configuration.ServiceRegistrySettingsElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> | |
</behaviorExtensions> | |
<bindingElementExtensions> | |
<add name="netMessagingTransport" type="Microsoft.ServiceBus.Messaging.Configuration.NetMessagingTransportExtensionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> | |
<add name="tcpRelayTransport" type="Microsoft.ServiceBus.Configuration.TcpRelayTransportElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> | |
<add name="httpRelayTransport" type="Microsoft.ServiceBus.Configuration.HttpRelayTransportElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> | |
<add name="httpsRelayTransport" type="Microsoft.ServiceBus.Configuration.HttpsRelayTransportElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> | |
<add name="onewayRelayTransport" type="Microsoft.ServiceBus.Configuration.RelayedOnewayTransportElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> | |
</bindingElementExtensions> | |
<bindingExtensions> | |
<add name="basicHttpRelayBinding" type="Microsoft.ServiceBus.Configuration.BasicHttpRelayBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> | |
<add name="webHttpRelayBinding" type="Microsoft.ServiceBus.Configuration.WebHttpRelayBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> | |
<add name="ws2007HttpRelayBinding" type="Microsoft.ServiceBus.Configuration.WS2007HttpRelayBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> | |
<add name="netTcpRelayBinding" type="Microsoft.ServiceBus.Configuration.NetTcpRelayBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> | |
<add name="netOnewayRelayBinding" type="Microsoft.ServiceBus.Configuration.NetOnewayRelayBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> | |
<add name="netEventRelayBinding" type="Microsoft.ServiceBus.Configuration.NetEventRelayBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> | |
<add name="netMessagingBinding" type="Microsoft.ServiceBus.Messaging.Configuration.NetMessagingBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> | |
</bindingExtensions> | |
</extensions> | |
</system.serviceModel> | |
<appSettings> | |
<!-- Service Bus specific app setings for messaging connections --> | |
<add key="Microsoft.ServiceBus.ConnectionString" value="Endpoint=sb://[your namespace].servicebus.windows.net;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=[your secret]" /> | |
</appSettings> | |
</configuration> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<Import Project="packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props" Condition="Exists('packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')" /> | |
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | |
<PropertyGroup> | |
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |
<ProjectGuid>{1A0CDDCD-8A2C-4A5A-95EA-E300FE72693D}</ProjectGuid> | |
<OutputType>Exe</OutputType> | |
<AppDesignerFolder>Properties</AppDesignerFolder> | |
<RootNamespace>ConsoleApplication1</RootNamespace> | |
<AssemblyName>ConsoleApplication1</AssemblyName> | |
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion> | |
<FileAlignment>512</FileAlignment> | |
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> | |
<WebGreaseLibPath>packages\WebGrease.1.5.2\lib</WebGreaseLibPath> | |
<NuGetPackageImportStamp>d062c4b0</NuGetPackageImportStamp> | |
</PropertyGroup> | |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
<PlatformTarget>AnyCPU</PlatformTarget> | |
<DebugSymbols>true</DebugSymbols> | |
<DebugType>full</DebugType> | |
<Optimize>false</Optimize> | |
<OutputPath>bin\Debug\</OutputPath> | |
<DefineConstants>DEBUG;TRACE</DefineConstants> | |
<ErrorReport>prompt</ErrorReport> | |
<WarningLevel>4</WarningLevel> | |
</PropertyGroup> | |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
<PlatformTarget>AnyCPU</PlatformTarget> | |
<DebugType>pdbonly</DebugType> | |
<Optimize>true</Optimize> | |
<OutputPath>bin\Release\</OutputPath> | |
<DefineConstants>TRACE</DefineConstants> | |
<ErrorReport>prompt</ErrorReport> | |
<WarningLevel>4</WarningLevel> | |
</PropertyGroup> | |
<ItemGroup> | |
<Reference Include="Antlr3.Runtime"> | |
<HintPath>packages\Antlr.3.5.0.2\lib\Antlr3.Runtime.dll</HintPath> | |
</Reference> | |
<Reference Include="EntityFramework"> | |
<HintPath>packages\EntityFramework.6.1.0\lib\net45\EntityFramework.dll</HintPath> | |
</Reference> | |
<Reference Include="EntityFramework.SqlServer"> | |
<HintPath>packages\EntityFramework.6.1.0\lib\net45\EntityFramework.SqlServer.dll</HintPath> | |
</Reference> | |
<Reference Include="Microsoft.AspNet.Identity.Core"> | |
<HintPath>packages\Microsoft.AspNet.Identity.Core.2.2.1\lib\net45\Microsoft.AspNet.Identity.Core.dll</HintPath> | |
</Reference> | |
<Reference Include="Microsoft.Data.Edm, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |
<SpecificVersion>False</SpecificVersion> | |
<HintPath>packages\Microsoft.Data.Edm.5.6.4\lib\net40\Microsoft.Data.Edm.dll</HintPath> | |
</Reference> | |
<Reference Include="Microsoft.Data.OData, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |
<SpecificVersion>False</SpecificVersion> | |
<HintPath>packages\Microsoft.Data.OData.5.6.4\lib\net40\Microsoft.Data.OData.dll</HintPath> | |
</Reference> | |
<Reference Include="Microsoft.Owin"> | |
<HintPath>packages\Microsoft.Owin.3.0.1\lib\net45\Microsoft.Owin.dll</HintPath> | |
</Reference> | |
<Reference Include="Microsoft.Owin.Security"> | |
<HintPath>packages\Microsoft.Owin.Security.3.0.1\lib\net45\Microsoft.Owin.Security.dll</HintPath> | |
</Reference> | |
<Reference Include="Microsoft.Owin.Security.Cookies"> | |
<HintPath>packages\Microsoft.Owin.Security.Cookies.2.1.0\lib\net45\Microsoft.Owin.Security.Cookies.dll</HintPath> | |
</Reference> | |
<Reference Include="Microsoft.Owin.Security.OAuth"> | |
<HintPath>packages\Microsoft.Owin.Security.OAuth.2.1.0\lib\net45\Microsoft.Owin.Security.OAuth.dll</HintPath> | |
</Reference> | |
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |
<Private>True</Private> | |
<HintPath>packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath> | |
</Reference> | |
<Reference Include="Microsoft.WindowsAzure.Configuration"> | |
<HintPath>packages\Microsoft.WindowsAzure.ConfigurationManager.3.1.0\lib\net40\Microsoft.WindowsAzure.Configuration.dll</HintPath> | |
</Reference> | |
<Reference Include="Newtonsoft.Json"> | |
<HintPath>packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> | |
</Reference> | |
<Reference Include="Owin"> | |
<HintPath>packages\Owin.1.0\lib\net40\Owin.dll</HintPath> | |
</Reference> | |
<Reference Include="System" /> | |
<Reference Include="System.ComponentModel.DataAnnotations" /> | |
<Reference Include="System.Core" /> | |
<Reference Include="System.Net" /> | |
<Reference Include="System.Net.Http" /> | |
<Reference Include="System.Net.Http.Formatting, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |
<SpecificVersion>False</SpecificVersion> | |
<HintPath>packages\Microsoft.AspNet.WebApi.Client.5.2.3\lib\net45\System.Net.Http.Formatting.dll</HintPath> | |
</Reference> | |
<Reference Include="System.Net.Http.WebRequest" /> | |
<Reference Include="System.Runtime.Serialization" /> | |
<Reference Include="System.ServiceModel" /> | |
<Reference Include="System.Spatial, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |
<SpecificVersion>False</SpecificVersion> | |
<HintPath>packages\System.Spatial.5.6.4\lib\net40\System.Spatial.dll</HintPath> | |
</Reference> | |
<Reference Include="System.Web.Helpers, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |
<SpecificVersion>False</SpecificVersion> | |
<HintPath>packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.Helpers.dll</HintPath> | |
</Reference> | |
<Reference Include="System.Web.Http, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |
<SpecificVersion>False</SpecificVersion> | |
<HintPath>packages\Microsoft.AspNet.WebApi.Core.5.2.3\lib\net45\System.Web.Http.dll</HintPath> | |
</Reference> | |
<Reference Include="System.Web.Http.WebHost, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |
<SpecificVersion>False</SpecificVersion> | |
<HintPath>packages\Microsoft.AspNet.WebApi.WebHost.5.2.3\lib\net45\System.Web.Http.WebHost.dll</HintPath> | |
</Reference> | |
<Reference Include="System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |
<SpecificVersion>False</SpecificVersion> | |
<HintPath>packages\Microsoft.AspNet.Mvc.5.2.3\lib\net45\System.Web.Mvc.dll</HintPath> | |
</Reference> | |
<Reference Include="System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |
<SpecificVersion>False</SpecificVersion> | |
<HintPath>packages\Microsoft.AspNet.Razor.3.2.3\lib\net45\System.Web.Razor.dll</HintPath> | |
</Reference> | |
<Reference Include="System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |
<SpecificVersion>False</SpecificVersion> | |
<HintPath>packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.dll</HintPath> | |
</Reference> | |
<Reference Include="System.Web.WebPages.Deployment, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |
<SpecificVersion>False</SpecificVersion> | |
<HintPath>packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Deployment.dll</HintPath> | |
</Reference> | |
<Reference Include="System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |
<SpecificVersion>False</SpecificVersion> | |
<HintPath>packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Razor.dll</HintPath> | |
</Reference> | |
<Reference Include="System.Xml.Linq" /> | |
<Reference Include="System.Data.DataSetExtensions" /> | |
<Reference Include="Microsoft.CSharp" /> | |
<Reference Include="System.Data" /> | |
<Reference Include="System.Xml" /> | |
<Reference Include="WebGrease"> | |
<HintPath>packages\WebGrease.1.5.2\lib\WebGrease.dll</HintPath> | |
</Reference> | |
<Reference Include="xunit.abstractions"> | |
<HintPath>packages\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll</HintPath> | |
</Reference> | |
<Reference Include="xunit.core"> | |
<HintPath>packages\xunit.extensibility.core.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.dll</HintPath> | |
</Reference> | |
</ItemGroup> | |
<ItemGroup> | |
<Compile Include="Program.cs" /> | |
<Compile Include="Properties\AssemblyInfo.cs" /> | |
</ItemGroup> | |
<ItemGroup> | |
<None Include="App.config" /> | |
<None Include="packages.config" /> | |
<None Include="Scripts\jquery-1.9.1.min.map" /> | |
</ItemGroup> | |
<ItemGroup> | |
<Content Include="Scripts\jquery-1.9.1.intellisense.js" /> | |
<Content Include="Scripts\jquery-1.9.1.js" /> | |
<Content Include="Scripts\jquery-1.9.1.min.js" /> | |
</ItemGroup> | |
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | |
<Import Project="packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" /> | |
<Target Name="EnsureBclBuildImported" BeforeTargets="BeforeBuild" Condition="'$(BclBuildImported)' == ''"> | |
<Error Condition="!Exists('packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" Text="This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=317567." HelpKeyword="BCLBUILD2001" /> | |
<Error Condition="Exists('packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" Text="The build restored NuGet packages. Build the project again to include these packages in the build. For more information, see http://go.microsoft.com/fwlink/?LinkID=317568." HelpKeyword="BCLBUILD2002" /> | |
</Target> | |
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> | |
<PropertyGroup> | |
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> | |
</PropertyGroup> | |
<Error Condition="!Exists('packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')" Text="$([System.String]::Format('$(ErrorText)', 'packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props'))" /> | |
</Target> | |
<!-- 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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<packages> | |
<package id="Antlr" version="3.5.0.2" targetFramework="net451" /> | |
<package id="Common.Logging.Core" version="3.1.0" targetFramework="net451" /> | |
<package id="DotNetOpenAuth.Core" version="4.3.4.13329" targetFramework="net451" /> | |
<package id="DotNetOpenAuth.OAuth.Consumer" version="4.3.4.13329" targetFramework="net451" /> | |
<package id="DotNetOpenAuth.OAuth.Core" version="4.3.4.13329" targetFramework="net451" /> | |
<package id="DotNetOpenAuth.OpenId.Core" version="4.3.4.13329" targetFramework="net451" /> | |
<package id="DotNetOpenAuth.OpenId.RelyingParty" version="4.3.4.13329" targetFramework="net451" /> | |
<package id="EntityFramework" version="6.1.0" targetFramework="net451" /> | |
<package id="Iesi.Collections" version="4.0.0.4000" targetFramework="net451" /> | |
<package id="jQuery" version="2.1.3" targetFramework="net451" /> | |
<package id="Microsoft.AspNet.Cors" version="5.2.3" targetFramework="net451" /> | |
<package id="Microsoft.AspNet.Identity.Core" version="2.2.1" targetFramework="net451" /> | |
<package id="Microsoft.AspNet.Mvc" version="5.2.3" targetFramework="net451" /> | |
<package id="Microsoft.AspNet.Providers.Core" version="2.0.0" targetFramework="net451" /> | |
<package id="Microsoft.AspNet.Razor" version="3.2.3" targetFramework="net451" /> | |
<package id="Microsoft.AspNet.SignalR.Core" version="2.2.0" targetFramework="net451" /> | |
<package id="Microsoft.AspNet.SignalR.JS" version="2.2.0" targetFramework="net451" /> | |
<package id="Microsoft.AspNet.WebApi.Client" version="5.2.3" targetFramework="net451" /> | |
<package id="Microsoft.AspNet.WebApi.Core" version="5.2.3" targetFramework="net451" /> | |
<package id="Microsoft.AspNet.WebApi.WebHost" version="5.2.3" targetFramework="net451" /> | |
<package id="Microsoft.AspNet.WebPages" version="3.2.3" targetFramework="net451" /> | |
<package id="Microsoft.Bcl" version="1.1.10" targetFramework="net451" /> | |
<package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net451" /> | |
<package id="Microsoft.Data.Edm" version="5.6.4" targetFramework="net451" /> | |
<package id="Microsoft.Data.OData" version="5.6.4" targetFramework="net451" /> | |
<package id="Microsoft.Net.Http" version="2.2.29" targetFramework="net451" /> | |
<package id="Microsoft.Owin" version="3.0.1" targetFramework="net451" /> | |
<package id="Microsoft.Owin.Host.SystemWeb" version="2.1.0" targetFramework="net451" /> | |
<package id="Microsoft.Owin.Security" version="3.0.1" targetFramework="net451" /> | |
<package id="Microsoft.Owin.Security.Cookies" version="2.1.0" targetFramework="net451" /> | |
<package id="Microsoft.Owin.Security.OAuth" version="2.1.0" targetFramework="net451" /> | |
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net451" /> | |
<package id="Microsoft.WindowsAzure.ConfigurationManager" version="3.1.0" targetFramework="net451" /> | |
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net451" /> | |
<package id="Ninject" version="3.2.0.0" targetFramework="net451" /> | |
<package id="Owin" version="1.0" targetFramework="net451" /> | |
<package id="System.Spatial" version="5.6.4" targetFramework="net451" /> | |
<package id="WebGrease" version="1.5.2" targetFramework="net451" /> | |
<package id="xunit.abstractions" version="2.0.0" targetFramework="net451" /> | |
<package id="xunit.assert" version="2.0.0" targetFramework="net451" /> | |
<package id="xunit.core" version="2.0.0" targetFramework="net451" /> | |
<package id="xunit.extensibility.core" version="2.0.0" targetFramework="net451" /> | |
</packages> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$packages = @("Newtonsoft.Json","jQuery","EntityFramework","Microsoft.AspNet.Mvc","Microsoft.AspNet.WebPages","Microsoft.AspNet.Razor","Microsoft.AspNet.WebApi.Client","Microsoft.AspNet.WebApi.Core","Microsoft.AspNet.WebApi.WebHost","Microsoft.AspNet.WebApi","WebGrease","Microsoft.Net.Http","jQuery.UI.Combined","Microsoft.jQuery.Unobtrusive.Validation","jQuery.Validation","Microsoft.AspNet.Web.Optimization","Microsoft.Data.Edm","Microsoft.Data.OData","System.Spatial","Microsoft.Web.Infrastructure","Microsoft.Owin","bootstrap","Modernizr","Antlr","Microsoft.Bcl","NUnit","Microsoft.Owin.Security","Microsoft.Owin.Host.SystemWeb","Moq","Microsoft.Bcl.Build","Microsoft.jQuery.Unobtrusive.Ajax","Microsoft.AspNet.Identity.Core","Owin","Microsoft.Owin.Security.Cookies","Microsoft.WindowsAzure.ConfigurationManager","Microsoft.Owin.Security.OAuth","NuGet.CommandLine","AutoMapper","Microsoft.AspNet.Identity.Owin","WindowsAzure.Storage","Microsoft.AspNet.WebApi.OData","Microsoft.AspNet.Identity.EntityFramework","Respond","log4net","Microsoft.Data.Services.Client","NuGet.Build","knockoutjs","Microsoft.Owin.Security.Google","Microsoft.Owin.Security.Facebook","Microsoft.Bcl.Async","Microsoft.AspNet.WebPages.WebData","Microsoft.Owin.Security.MicrosoftAccount","WebActivatorEx","Microsoft.AspNet.WebApi.HelpPage","Microsoft.Owin.Security.Twitter","Unity","CommonServiceLocator","WindowsAzure.ServiceBus","Microsoft.AspNet.WebPages.Data","NLog","Microsoft.AspNet.WebApi.Owin","Microsoft.AspNet.Cors","Microsoft.AspNet.Mvc.FixedDisplayModes","Autofac","Microsoft.AspNet.Providers.Core","NUnitTestAdapter","HtmlAgilityPack","RestSharp","Microsoft.AspNet.SignalR.Core","Ninject","xunit","Castle.Core","Microsoft.AspNet.SignalR.JS","Common.Logging","DotNetOpenAuth.OpenId.RelyingParty","DotNetOpenAuth.OAuth.Consumer","DotNetOpenAuth.AspNet","Microsoft.AspNet.SignalR","System.IdentityModel.Tokens.Jwt","Microsoft.AspNet.SignalR.SystemWeb","FluentAssertions","Microsoft.AspNet.WebApi.Cors","angularjs","Microsoft.Diagnostics.Tracing.EventSource.Redist","Microsoft.AspNet.Providers.LocalDb","Microsoft.Owin.Hosting","Microsoft.AspNet.WebApi.Tracing","AspNet.ScriptManager.jQuery","Dapper","Ninject.Web.Common","Microsoft.ApplicationInsights","elmah.corelibrary","Microsoft.Owin.Host.HttpListener","DotNetOpenAuth.OAuth.Core","SharpZipLib","ServiceStack.Text","Selenium.WebDriver","NHibernate","Microsoft.ApplicationInsights.RuntimeTelemtry","Microsoft.ApplicationInsights.Web"); | |
foreach ($package in $packages) {install-package $package; Write-Host "Installing $package"; git diff | Out-File -FilePath "../nugetdiff/$package"; uninstall-package $package; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment