Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix versioning issue in Gallery for NuGet.Versioning #6595

Merged
merged 1 commit into from
Oct 25, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/NuGetGallery/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<!-- Depending on your policy, these likely do not need to vary -->
<!-- SmtpUri is expected to be of the format: smtps://username:password@host:port. Note that if username contains an "@", you need to URI Encode it! -->
<!--<add key="Gallery.SmtpUri" value="" />-->
<add key="Gallery.AsynchronousEmailServiceEnabled" value="false" />
<add key="Gallery.AsynchronousEmailServiceEnabled" value="false"/>
<!--
Location for the Lucene Index.
AppData -> ~/App_Data/Lucene,
Expand Down Expand Up @@ -184,7 +184,7 @@
<add key="PackageDelete.HourLimitWithMaximumDownloads" value=""/>
<add key="PackageDelete.MaximumDownloadsForPackageVersion" value=""/>

<add key="Gallery.RejectPackagesWithLicense" value="true" />
<add key="Gallery.RejectPackagesWithLicense" value="true"/>
</appSettings>
<connectionStrings>
<add name="Gallery.SqlServer" connectionString="Data Source=(localdb)\mssqllocaldb; Initial Catalog=NuGetGallery; Integrated Security=True; MultipleActiveResultSets=True" providerName="System.Data.SqlClient"/>
Expand Down Expand Up @@ -492,7 +492,7 @@
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="NuGet.Versioning" publicKeyToken="31BF3856AD364E35" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-4.8.0.4" newVersion="4.8.0.4"/>
<bindingRedirect oldVersion="0.0.0.0-4.8.0.6" newVersion="4.8.0.6"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Autofac.Integration.Owin" publicKeyToken="17863AF14B0044DA" culture="neutral"/>
Expand Down