-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add local nuget package for headless form packages
Fixes: AFORM-4135 Story: AFORM-3507
- Loading branch information
Linh Hoang
committed
May 10, 2024
1 parent
21e0550
commit d67a88b
Showing
9 changed files
with
45 additions
and
28 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
Binary file added
BIN
+7.59 KB
...rm.contentgraph/0.1.1-inte-380/optimizely.headless.form.contentgraph.0.1.1-inte-380.nupkg
Binary file not shown.
Binary file added
BIN
+34.6 KB
...zely.headless.form.core/0.1.1-inte-380/optimizely.headless.form.core.0.1.1-inte-380.nupkg
Binary file not shown.
Binary file added
BIN
+31.9 KB
...eadless.form.service/0.1.1-inte-380/optimizely.headless.form.service.0.1.1-inte-380.nupkg
Binary file not shown.
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 |
---|---|---|
@@ -1,7 +1,24 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<add key="nuget.org" value="https://www.nuget.org/api/v2/" /> | ||
<add key="optimizely" value="https://nuget.optimizely.com/feed/packages.svc/" /> | ||
</packageSources> | ||
<add key="headlessform.local" value="..\NugetPackages\" /> | ||
</packageSources> | ||
<packageSourceMapping> | ||
<packageSource key="nuget.org"> | ||
<package pattern="*" /> | ||
</packageSource> | ||
<packageSource key="optimizely"> | ||
<package pattern="EPiServer.*" /> | ||
<package pattern="Optimizely.*" /> | ||
</packageSource> | ||
<packageSource key="headlessform.local"> | ||
<package pattern="Optimizely.Headless.*" /> | ||
<package pattern="Optimizely.Cms.*" /> | ||
<package pattern="EPiServer.Forms.*" /> | ||
<package pattern="EPiServer.Forms" /> | ||
<package pattern="EPiServer.AddOns.*" /> | ||
</packageSource> | ||
</packageSourceMapping> | ||
</configuration> |