commit 3de67f0052e086eec89bfba49bd98adca8869115 Author: 최준영 Date: Tue Jun 16 10:10:37 2026 +0900 Initial commit: BARON SSO 샘플 (WebView OIDC PKCE 인증 라이브러리 + 데모 앱) Co-Authored-By: Claude Opus 4.8 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8617a01 --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +## .NET / Visual Studio +bin/ +obj/ +.vs/ +*.user +*.suo +*.userosscache +*.sln.docstates + +## Build results +[Dd]ebug/ +[Rr]elease/ +x64/ +x86/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ + +## Publish output +publish/ +*.publishsettings + +## WebView2 runtime / user data +*.WebView2/ +EBWebView/ + +## Rider / others +.idea/ +*.DotSettings.user diff --git a/BaronSoftware.SSO.Sample/App.xaml b/BaronSoftware.SSO.Sample/App.xaml new file mode 100644 index 0000000..3087e3e --- /dev/null +++ b/BaronSoftware.SSO.Sample/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/BaronSoftware.SSO.Sample/App.xaml.cs b/BaronSoftware.SSO.Sample/App.xaml.cs new file mode 100644 index 0000000..e7007a5 --- /dev/null +++ b/BaronSoftware.SSO.Sample/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace BaronSoftware.Auth.Sample +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/BaronSoftware.SSO.Sample/AssemblyInfo.cs b/BaronSoftware.SSO.Sample/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/BaronSoftware.SSO.Sample/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/BaronSoftware.SSO.Sample/BaronSoftware.SSO.Sample.csproj b/BaronSoftware.SSO.Sample/BaronSoftware.SSO.Sample.csproj new file mode 100644 index 0000000..80ff6f4 --- /dev/null +++ b/BaronSoftware.SSO.Sample/BaronSoftware.SSO.Sample.csproj @@ -0,0 +1,21 @@ + + + + WinExe + net8.0-windows + enable + enable + true + + + + + + + + + PreserveNewest + + + + diff --git a/BaronSoftware.SSO.Sample/MainWindow.xaml b/BaronSoftware.SSO.Sample/MainWindow.xaml new file mode 100644 index 0000000..37deac1 --- /dev/null +++ b/BaronSoftware.SSO.Sample/MainWindow.xaml @@ -0,0 +1,38 @@ + + + + + + + + + + + +