Skip to content

Commit

Permalink
add license file to nupkg
Browse files Browse the repository at this point in the history
  • Loading branch information
runceel committed Apr 17, 2020
1 parent 66bfe91 commit 4f40063
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 2 deletions.
23 changes: 21 additions & 2 deletions EmbeddedMsalCustomWebUi.Wpf/EmbeddedMsalCustomWebUi.Wpf.csproj
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>
21 changes: 21 additions & 0 deletions LICENSE.txt
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.
20 changes: 20 additions & 0 deletions README.md
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.

0 comments on commit 4f40063

Please sign in to comment.