-
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.
- Loading branch information
Showing
3 changed files
with
62 additions
and
2 deletions.
There are no files selected for viewing
23 changes: 21 additions & 2 deletions
23
EmbeddedMsalCustomWebUi.Wpf/EmbeddedMsalCustomWebUi.Wpf.csproj
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,13 +1,32 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop"> | ||
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
<UseWPF>true</UseWPF> | ||
<Nullable>enable</Nullable> | ||
<Version>0.1.1</Version> | ||
<Authors>Kazuki Ota</Authors> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<Company /> | ||
<Product /> | ||
<PackageLicenseExpression></PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/runceel/EmbeddedMsalCustomWebUi.Wpf</PackageProjectUrl> | ||
<Description> | ||
This library provides embedded web browser interface for WPF on .NET Core when using MSAL.NET. | ||
</Description> | ||
<RepositoryUrl>https://github.com/runceel/EmbeddedMsalCustomWebUi.Wpf</RepositoryUrl> | ||
<PackageTags>WPF .NETCore</PackageTags> | ||
<PackageLicenseFile>content/LICENSE.txt</PackageLicenseFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Content Include="../LICENSE.txt"> | ||
<CopyToOutputDirectory>always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Identity.Client" Version="4.11.0" /> | ||
</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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2020 Kazuki Ota | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
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,2 +1,22 @@ | ||
# Embedded Web UI for MSAL.NET for WPF on .NET Core | ||
|
||
This library provides embedded web browser interface for WPF on .NET Core when using MSAL.NET. | ||
|
||
## How to use it? | ||
|
||
It's easy to use, you can use this just set `EmbeddedMsalCustomWebUi.Wpf.EmbeddedBrowserWebUi` with `WithCustomWebUi` of MSAL.NET extension method. | ||
|
||
```csharp | ||
IPublicClientApplication app = ...; | ||
var result = await app.AcquireTokenInteractive(new[] { "your scope" }) | ||
.WithCustomWebUi(new EmbeddedMsalCustomWebUi.Wpf.EmbeddedBrowserWebUi(ownerWindowInstance)) | ||
.ExecuteAsync(); | ||
``` | ||
|
||
Needs a Window class instance for owner of the custom web ui window to create the EmbeddedBrowserWebUi instance. | ||
And there are a few additional constructor arguments: | ||
|
||
- title: The window title. The default value is "Sign in". | ||
- windowWidth: The window width. The default value is 800. | ||
- windowHeight: The window height. The default value is 650. | ||
- windowStartupLocation: Thw window startup location. The default value is CenterOwner. |