diff --git a/embedded-assistant/c-sharp-wpf/.env.example b/embedded-assistant/c-sharp-wpf/.env.example new file mode 100644 index 0000000..86751c7 --- /dev/null +++ b/embedded-assistant/c-sharp-wpf/.env.example @@ -0,0 +1,5 @@ +CORTI_ENVIRONMENT=eu +CORTI_TENANT_NAME=your-tenant +CORTI_CLIENT_ID=assistant +CORTI_USER_EMAIL=user@example.com +CORTI_USER_PASSWORD=replace-me diff --git a/embedded-assistant/c-sharp-wpf/.gitignore b/embedded-assistant/c-sharp-wpf/.gitignore new file mode 100644 index 0000000..184d576 --- /dev/null +++ b/embedded-assistant/c-sharp-wpf/.gitignore @@ -0,0 +1,10 @@ +.env +.dotnet/ +bin/ +obj/ +artifacts/ +.vs/ +*.user +*.csproj.user +WebAssets/dist/ +WebAssets/node_modules/ diff --git a/embedded-assistant/c-sharp-wpf/App.xaml b/embedded-assistant/c-sharp-wpf/App.xaml new file mode 100644 index 0000000..a9c5057 --- /dev/null +++ b/embedded-assistant/c-sharp-wpf/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/embedded-assistant/c-sharp-wpf/App.xaml.cs b/embedded-assistant/c-sharp-wpf/App.xaml.cs new file mode 100644 index 0000000..03e005a --- /dev/null +++ b/embedded-assistant/c-sharp-wpf/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace CortiAssistantApp +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/embedded-assistant/c-sharp-wpf/AssemblyInfo.cs b/embedded-assistant/c-sharp-wpf/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/embedded-assistant/c-sharp-wpf/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/embedded-assistant/c-sharp-wpf/CortiAssistantApp.csproj b/embedded-assistant/c-sharp-wpf/CortiAssistantApp.csproj new file mode 100644 index 0000000..9762aaf --- /dev/null +++ b/embedded-assistant/c-sharp-wpf/CortiAssistantApp.csproj @@ -0,0 +1,28 @@ + + + + WinExe + net10.0-windows + enable + enable + true + + + + + + + + + + + + + + + + + + + diff --git a/embedded-assistant/c-sharp-wpf/CortiAssistantApp.slnx b/embedded-assistant/c-sharp-wpf/CortiAssistantApp.slnx new file mode 100644 index 0000000..8429147 --- /dev/null +++ b/embedded-assistant/c-sharp-wpf/CortiAssistantApp.slnx @@ -0,0 +1,3 @@ + + + diff --git a/embedded-assistant/c-sharp-wpf/MainWindow.xaml b/embedded-assistant/c-sharp-wpf/MainWindow.xaml new file mode 100644 index 0000000..aaade53 --- /dev/null +++ b/embedded-assistant/c-sharp-wpf/MainWindow.xaml @@ -0,0 +1,23 @@ + + + + + + + +