-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OCC-218: Update NuGet packages and migrate to centralized package man…
…agement (#410)
- Loading branch information
1 parent
92dd809
commit 7669173
Showing
19 changed files
with
119 additions
and
60 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
<CentralPackageTransitivePinningEnabled>false</CentralPackageTransitivePinningEnabled> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageVersion Include="Lombiq.Analyzers.OrchardCore" Version="5.0.0" /> | ||
<PackageVersion Include="Lombiq.HelpfulLibraries.OrchardCore" Version="9.1.0" /> | ||
<PackageVersion Include="Lombiq.NodeJs.Extensions" Version="2.1.0" /> | ||
<PackageVersion Include="Lombiq.Tests" Version="3.0.0" /> | ||
<PackageVersion Include="Lombiq.Tests.UI" Version="9.0.1-alpha.2.occ-218" /> | ||
<PackageVersion Include="Lombiq.Tests.UI.AppExtensions" Version="9.0.1-alpha.2.occ-218" /> | ||
<PackageVersion Include="Lombiq.Tests.UI.Shortcuts" Version="9.0.1-alpha.2.occ-218" /> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.9.0" /> | ||
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" /> | ||
<PackageVersion Include="OrchardCore.Application.Cms.Targets" Version="1.8.2" /> | ||
<PackageVersion Include="OrchardCore.ContentFields" Version="1.8.2" /> | ||
<PackageVersion Include="OrchardCore.ContentManagement" Version="1.8.2" /> | ||
<PackageVersion Include="OrchardCore.ContentManagement.Abstractions" Version="1.8.2" /> | ||
<PackageVersion Include="OrchardCore.ContentTypes" Version="1.8.2" /> | ||
<PackageVersion Include="OrchardCore.ContentTypes.Abstractions" Version="1.8.2" /> | ||
<PackageVersion Include="OrchardCore.Html" Version="1.8.2" /> | ||
<PackageVersion Include="OrchardCore.Indexing.Abstractions" Version="1.8.2" /> | ||
<PackageVersion Include="OrchardCore.Localization" Version="1.8.2" /> | ||
<PackageVersion Include="OrchardCore.Logging.NLog" Version="1.8.2" /> | ||
<PackageVersion Include="OrchardCore.Module.Targets" Version="1.8.2" /> | ||
<PackageVersion Include="OrchardCore.Navigation.Core" Version="1.8.2" /> | ||
<PackageVersion Include="OrchardCore.Templates" Version="1.8.2" /> | ||
<PackageVersion Include="OrchardCore.Title" Version="1.8.2" /> | ||
<PackageVersion Include="OrchardCore.Workflows.Abstractions" Version="1.8.2" /> | ||
<PackageVersion Include="Shouldly" Version="4.2.1" /> | ||
<PackageVersion Include="Stripe.net" Version="43.15.0" /> | ||
<PackageVersion Include="System.Text.Json" Version="8.0.2" /> | ||
<PackageVersion Include="xunit" Version="2.7.0" /> | ||
<PackageVersion Include="xunit.runner.visualstudio" Version="2.5.7" /> | ||
</ItemGroup> | ||
</Project> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- Based on https://learn.microsoft.com/en-us/nuget/consume-packages/package-source-mapping#enable-by-manually-editing-nugetconfig. --> | ||
<configuration> | ||
<packageSources> | ||
<add key="NuGet" value="https://api.nuget.org/v3/index.json" /> | ||
</packageSources> | ||
<!-- Define the package sources, `clear` ensures no additional sources are inherited from another config file. --> | ||
<packageSources> | ||
<clear /> | ||
<add key="NuGet" value="https://api.nuget.org/v3/index.json" /> | ||
<add key="orchardcore-commerce" value="https://nuget.cloudsmith.io/orchardcore/commerce/v3/index.json" /> | ||
</packageSources> | ||
|
||
<!-- Define mappings by adding package patterns beneath the target source. --> | ||
<!-- OrchardCore.Commerce* packages will be restored from orchardcore-commerce, everything else from nuget.org. --> | ||
<packageSourceMapping> | ||
<packageSource key="NuGet"> | ||
<package pattern="*" /> | ||
</packageSource> | ||
<packageSource key="orchardcore-commerce"> | ||
<package pattern="OrchardCore.Commerce*" /> | ||
</packageSource> | ||
</packageSourceMapping> | ||
</configuration> |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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