Skip to content

Commit

Permalink
moved to nuget references for example
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahmoud Swehli committed Jul 21, 2023
1 parent dcec81d commit 82d0eb0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 14 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ This library allows you to (relatively) easily integrate Magic Links into your A

This library has been tested on .net 7.0. It may work with earlier versions, however all referenced nuget packages are based on the latest available versions and will continue to be updated to the latest available versions where applicable.

Example can be tested at [http://muljinmagiclinkexample.azurewebsites.net/](http://muljinmagiclinkexample.azurewebsites.net/)

### What is a Magic Link?
A magic link is a passwordless form of authentication where by a token can be emailed or messaged to a user and exchanged for an authentication token. This allows for a smoother authentication flow for users where they do not need to set or remember any additional passwords.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,10 @@
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
<PackageReference Include="Microsoft.Graph" Version="5.18.0" />
<PackageReference Include="SendGrid" Version="9.28.1" />
<PackageReference Include="Muljin.B2CMagicLink.AzureKeyVault" Version="0.0.1" />
<PackageReference Include="Muljin.B2CMagicLink" Version="0.0.1" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\Muljin.B2CMagicLink\Muljin.B2CMagicLink.AzureKeyVault\Muljin.B2CMagicLink.AzureKeyVault.csproj">
<GlobalPropertiesToRemove></GlobalPropertiesToRemove>
</ProjectReference>
<ProjectReference Include="..\..\src\Muljin.B2CMagicLink\Muljin.B2CMagicLink\Muljin.B2CMagicLink.csproj">
<GlobalPropertiesToRemove></GlobalPropertiesToRemove>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Remove="Models\" />
<None Remove="Services\" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,10 @@
</None>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Muljin.B2CMagicLink.Abstractions\Muljin.B2CMagicLink.Abstractions.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Azure" Version="1.6.3" />
<PackageReference Include="Azure.Security.KeyVault.Keys" Version="4.5.0" />
<PackageReference Include="Azure.Security.KeyVault.Certificates" Version="4.5.1" />
<PackageReference Include="Muljin.B2CMagicLink.Abstractions" Version="0.0.1" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Azure" Version="1.6.3" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Muljin.B2CMagicLink.Abstractions\Muljin.B2CMagicLink.Abstractions.csproj" />
<PackageReference Include="Muljin.B2CMagicLink.Abstractions" Version="0.0.1" />
</ItemGroup>
<ItemGroup>
<None Remove="Controllers\" />
Expand Down

0 comments on commit 82d0eb0

Please sign in to comment.