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: Different startup steps implementation since other fix fails to restore #621

Closed
wants to merge 23 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
2ac9709
Fixed nuget errors
Joshua-Lester3 Oct 3, 2024
d3cff7f
Book image is now clickable
Joshua-Lester3 Oct 3, 2024
790b5c4
Nested img in anchor
Joshua-Lester3 Oct 3, 2024
b52df5d
Book image is now clickable
Joshua-Lester3 Oct 3, 2024
ba0e4d9
Merge remote-tracking branch 'origin/main'
Joshua-Lester3 Oct 3, 2024
0206cb9
Revert "Fixed nuget errors"
Joshua-Lester3 Oct 3, 2024
8b0ef28
Reapply "Fixed nuget errors"
Joshua-Lester3 Oct 3, 2024
5896f3d
Revert "Reapply "Fixed nuget errors""
Joshua-Lester3 Oct 7, 2024
cff1e0f
Made book cover clickable in /about page
Joshua-Lester3 Oct 7, 2024
8e087e9
Merge branch 'main' into main
BenjaminMichaelis Oct 7, 2024
430a777
Merge branch 'main' into main
BenjaminMichaelis Oct 7, 2024
b1b3a4f
Messing with configuration to disable inaccessible nuget feed
Joshua-Lester3 Oct 7, 2024
954f7bc
Merge remote-tracking branch 'origin/main'
Joshua-Lester3 Oct 8, 2024
ff84cd8
Re-enable nuget feed for PR
Joshua-Lester3 Oct 8, 2024
f6fd128
Merge remote-tracking branch 'IntelliTect/main'
Joshua-Lester3 Oct 8, 2024
fa38c68
Added MSBuild conditional to nuget.config
Joshua-Lester3 Oct 8, 2024
fb78d5d
Ignores going to previous page when at /home
Joshua-Lester3 Oct 8, 2024
d6f2468
remove debugger
Joshua-Lester3 Oct 8, 2024
fb3192e
Revert "remove debugger"
Joshua-Lester3 Oct 8, 2024
012452a
Revert "Ignores going to previous page when at /home"
Joshua-Lester3 Oct 8, 2024
9338433
Merge branch 'main' into main
Joshua-Lester3 Oct 15, 2024
9aee912
Merge remote-tracking branch 'IntelliTect/main'
Joshua-Lester3 Oct 15, 2024
529a94b
Conditionally restore private nuget feed source in .props
Joshua-Lester3 Oct 15, 2024
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
9 changes: 8 additions & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,20 @@
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>false</CentralPackageTransitivePinningEnabled>
<ToolingPackagesVersion>1.1.1.4359</ToolingPackagesVersion>
<RestoreSources Condition="$(AccessToNugetFeed)">
https://pkgs.dev.azure.com/intelliTect/_packaging/EssentialCSharp/nuget/v3/index.json;
</RestoreSources>
<RestoreSources>
$(RestoreSources);
https://api.nuget.org/v3/index.json;
</RestoreSources>
</PropertyGroup>
<ItemGroup Condition="$(AccessToNugetFeed)">
<PackageVersion Include="ContentFeedNuget" Version="$(ToolingPackagesVersion)" />
</ItemGroup>
<ItemGroup>
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.10" />
<PackageVersion Include="EssentialCSharp.Shared.Models" Version="$(ToolingPackagesVersion)" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.8" />
<PackageVersion Include="AspNet.Security.OAuth.GitHub" Version="8.2.0" />
<PackageVersion Include="coverlet.collector" Version="6.0.2" />
<PackageVersion Include="HtmlAgilityPack" Version="1.11.67" />
Expand Down
3 changes: 0 additions & 3 deletions nuget.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
<add key="EssentialCSharp" value="https://pkgs.dev.azure.com/intelliTect/_packaging/EssentialCSharp/nuget/v3/index.json" />
</packageSources>
<disabledPackageSources>
<add key="EssentialCSharp" value="!$(AccessToNugetFeed)" />
</disabledPackageSources>
<packageSourceMapping>
<packageSource key="nuget">
<package pattern="*" />
Expand Down
Loading