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

Develop to Main - publish 2.0.0 #21

Merged
merged 36 commits into from
May 3, 2022
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
ac5d34e
configure what host is allowed through
floyd-may Apr 27, 2022
66e0bba
fix origin/Develop check in GH action
floyd-may Apr 29, 2022
9371b47
random syntax issue in GH action
floyd-may Apr 29, 2022
667ccfe
schrodingbug in GH action config - how did that ever work?
floyd-may Apr 29, 2022
3af6d96
only push to nuget if on origin/Develop
floyd-may Apr 30, 2022
37b1a14
retry only push to nuget if on origin/Develop
floyd-may Apr 30, 2022
87ef7ce
fix syntax error
floyd-may Apr 30, 2022
6b3e0b1
I'm a programmer, i understand booleans. really.
floyd-may Apr 30, 2022
50efb3c
allow multiple allowed hosts
floyd-may Apr 30, 2022
fdf99e5
bumping the version. Offically kicks of the 2.0 RC. Still need to cut…
calebjenkins May 1, 2022
dfa039d
Merge pull request #11 from calebjenkins/allow-non-localhost
calebjenkins May 1, 2022
0b5160c
fix CI actions workflow
floyd-may May 1, 2022
628c792
Merge pull request #14 from calebjenkins/ci-publish-nuget
calebjenkins May 1, 2022
c8325c4
build nuget for both netcoreapp3.1 and net6.0
floyd-may May 1, 2022
eed43bf
remove unneeded conditional package refs
floyd-may May 1, 2022
ee61fb3
made test HostRewriteSettings.Host string? to rmove compiler warning.
calebjenkins May 1, 2022
9a460d9
moved FakeAuth setting List<Claims> to IList<Claims for consistancy.
calebjenkins May 1, 2022
ee27059
removing obsolete extension methods
calebjenkins May 1, 2022
33b153d
update to readme for 2.0.0
calebjenkins May 1, 2022
4014740
update samples to CI nuget and StartUp class
calebjenkins May 2, 2022
f24ea7d
Merge pull request #15 from calebjenkins/update-nuget-targeting
calebjenkins May 2, 2022
375bb4e
Merge branch 'Develop' into dev/feature-12-Prep-for-2.0
calebjenkins May 2, 2022
be0b266
adding net5 to nuget targets and updating readme with additonal links
calebjenkins May 2, 2022
66079c2
Merge pull request #16 from calebjenkins/dev/feature-12-Prep-for-2.0
calebjenkins May 2, 2022
cd771eb
re-arranging net6 vs net 5 - only net 5 was showing up in nuget
calebjenkins May 2, 2022
3afc586
can't get 5.0 and 6.0 to both show in nuget. screw it, only care abou…
calebjenkins May 2, 2022
f5430a3
update readme format for History
calebjenkins May 2, 2022
670d9d0
additonal context in readme history
calebjenkins May 2, 2022
69e1fc0
moving IEnumerable to IList for ApprovedHosts
calebjenkins May 2, 2022
ce2b550
Merge pull request #18 from calebjenkins/dev/feature-13-evaluating-2.0
calebjenkins May 2, 2022
0423e4a
update samples to always reference latest CI nuget package to catch i…
calebjenkins May 2, 2022
99e1975
Merge pull request #19 from calebjenkins/dev/feature-14-move-nuget-sa…
calebjenkins May 2, 2022
9f884d3
adding AllowedHosts to SampleWeb App comments
calebjenkins May 3, 2022
b323166
Merge pull request #20 from calebjenkins/dev/feature-15-final-2.0-eval
calebjenkins May 3, 2022
43b5079
Updating wf to fix error. Using Floyd-fu from dev-ci and pplying to main
calebjenkins May 3, 2022
575f016
Merge branch 'Develop' of https://github.com/calebjenkins/FakeAuth in…
calebjenkins May 3, 2022
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
Prev Previous commit
Next Next commit
remove unneeded conditional package refs
  • Loading branch information
floyd-may committed May 1, 2022
commit eed43bfa250e32197efed4bd71a07625231da1e2
7 changes: 0 additions & 7 deletions src/FakeAuth/FakeAuth.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,6 @@

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.2.0" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1' ">
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.24" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
</ItemGroup>

Expand Down