From b470156f83db6604eb85f9f961e1361751bdb42f Mon Sep 17 00:00:00 2001 From: Jan Staelens Date: Mon, 20 Mar 2023 15:52:36 +0100 Subject: [PATCH] Initial Solution --- .gitattributes | 63 +++ .../private-dataminer-cicd-nugetsolution.yml | 34 ++ .gitignore | 363 ++++++++++++++++++ .../Empower.Library.Room3.csproj | 35 ++ Empower.Library.Room3/IOrder.cs | 31 ++ Empower.Library.Room3/LICENSE.txt | 17 + Empower.Library.Room3/Order.cs | 76 ++++ Empower.Library.Room3/OrderFactory.cs | 24 ++ Empower.Library.Room3/README.md | 36 ++ Empower.Library.Room3/nuget/Icon.png | Bin 0 -> 20877 bytes LICENSE.txt | 21 + README.md | 39 ++ Skyline.DataMiner.Empower.Library.Room3.sln | 30 ++ 13 files changed, 769 insertions(+) create mode 100644 .gitattributes create mode 100644 .github/workflows/private-dataminer-cicd-nugetsolution.yml create mode 100644 .gitignore create mode 100644 Empower.Library.Room3/Empower.Library.Room3.csproj create mode 100644 Empower.Library.Room3/IOrder.cs create mode 100644 Empower.Library.Room3/LICENSE.txt create mode 100644 Empower.Library.Room3/Order.cs create mode 100644 Empower.Library.Room3/OrderFactory.cs create mode 100644 Empower.Library.Room3/README.md create mode 100644 Empower.Library.Room3/nuget/Icon.png create mode 100644 LICENSE.txt create mode 100644 README.md create mode 100644 Skyline.DataMiner.Empower.Library.Room3.sln diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1ff0c42 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,63 @@ +############################################################################### +# Set default behavior to automatically normalize line endings. +############################################################################### +* text=auto + +############################################################################### +# Set default behavior for command prompt diff. +# +# This is need for earlier builds of msysgit that does not have it on by +# default for csharp files. +# Note: This is only used by command line +############################################################################### +#*.cs diff=csharp + +############################################################################### +# Set the merge driver for project and solution files +# +# Merging from the command prompt will add diff markers to the files if there +# are conflicts (Merging from VS is not affected by the settings below, in VS +# the diff markers are never inserted). Diff markers may cause the following +# file extensions to fail to load in VS. An alternative would be to treat +# these files as binary and thus will always conflict and require user +# intervention with every merge. To do so, just uncomment the entries below +############################################################################### +#*.sln merge=binary +#*.csproj merge=binary +#*.vbproj merge=binary +#*.vcxproj merge=binary +#*.vcproj merge=binary +#*.dbproj merge=binary +#*.fsproj merge=binary +#*.lsproj merge=binary +#*.wixproj merge=binary +#*.modelproj merge=binary +#*.sqlproj merge=binary +#*.wwaproj merge=binary + +############################################################################### +# behavior for image files +# +# image files are treated as binary by default. +############################################################################### +#*.jpg binary +#*.png binary +#*.gif binary + +############################################################################### +# diff behavior for common document formats +# +# Convert binary document formats to text before diffing them. This feature +# is only available from the command line. Turn it on by uncommenting the +# entries below. +############################################################################### +#*.doc diff=astextplain +#*.DOC diff=astextplain +#*.docx diff=astextplain +#*.DOCX diff=astextplain +#*.dot diff=astextplain +#*.DOT diff=astextplain +#*.pdf diff=astextplain +#*.PDF diff=astextplain +#*.rtf diff=astextplain +#*.RTF diff=astextplain diff --git a/.github/workflows/private-dataminer-cicd-nugetsolution.yml b/.github/workflows/private-dataminer-cicd-nugetsolution.yml new file mode 100644 index 0000000..0c3835e --- /dev/null +++ b/.github/workflows/private-dataminer-cicd-nugetsolution.yml @@ -0,0 +1,34 @@ +name: DataMiner CICD NuGet Solution + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events. + push: + branches: + - main + - master + tags: + - '[0-9]+.[0-9]+.[0-9]+' + - '[0-9]+.[0-9]+.[0-9]+-[0-9a-zA-Z]+' + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + +# Note: Tagging will push the nupackage to nuget.org using the provided NUGETAPIKEY. You can tag both a prerelease version (a.b.c-xxxx) or a stable release (a.b.c). + CICD: + uses: SkylineCommunications/_ReusableWorkflows/.github/workflows/NuGet Solution Master Workflow.yml@Dev/UbuntuTest + with: + referenceName: ${{ github.ref_name }} + runNumber: ${{ github.run_number }} + referenceType: ${{ github.ref_type }} + repository: ${{ github.repository }} + owner: ${{ github.repository_owner }} + sonarCloudProjectName: SkylineCommunications_Skyline.DataMiner.Empower.Library.Room3 + secrets: + sonarCloudToken: ${{ secrets.SONAR_TOKEN }} + pfx: ${{ secrets.PFX }} + pfxPassword: ${{ secrets.PFXPASSWORD }} + nugetApiKey: ${{ secrets.NUGETAPIKEY }} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9491a2f --- /dev/null +++ b/.gitignore @@ -0,0 +1,363 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Mono auto generated files +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Oo]ut/ +[Ll]og/ +[Ll]ogs/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# CodeRush personal settings +.cr/personal + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ + +# Local History for Visual Studio +.localhistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd \ No newline at end of file diff --git a/Empower.Library.Room3/Empower.Library.Room3.csproj b/Empower.Library.Room3/Empower.Library.Room3.csproj new file mode 100644 index 0000000..cbd02e4 --- /dev/null +++ b/Empower.Library.Room3/Empower.Library.Room3.csproj @@ -0,0 +1,35 @@ + + + netstandard2.0 + disable + disable + Skyline.DataMiner.Empower.Library.Room3 + 1.0.1 + 1.0.1 + Skyline;DataMiner + https://skyline.be + README.md + LICENSE.txt + True + Icon.png + True + True + SkylineCommunications + Skyline Communications + + Empower Demo - Library that allows an order to be placed on DataMiner solutions.skyline.be. +var order = OrderFactory.CreateOrder("Order 1"); + + + + + + + + + + + + + + diff --git a/Empower.Library.Room3/IOrder.cs b/Empower.Library.Room3/IOrder.cs new file mode 100644 index 0000000..b632044 --- /dev/null +++ b/Empower.Library.Room3/IOrder.cs @@ -0,0 +1,31 @@ +using System.Threading.Tasks; + +namespace Skyline.DataMiner.Empower.Library.Room3 +{ + /// + /// Allows dispatching of an order to be sent over HTTPS to DataMiner. + /// + public interface IOrder + { + /// + /// Dispatches this job and waits on result. + /// REQUIRED - A user secret holding the GUID to log to DataMiner is required. + /// Run the commands on every server you want to provide access: + /// dotnet tool install --global Skyline.DataMiner.CICD.Tools.WinEncryptedKeys + /// WinEncryptedKeys --name SLC_EXTERNAL_DISPATCHER_KEY --value MYGUID + /// + /// The user dispatching the job. + /// True if the dispatch was successful, False if logging failed. + bool Dispatch(string user); + + /// + /// Dispatches this job without waiting on a result. + /// Run the commands on every server you want to provide access: + /// dotnet tool install --global Skyline.DataMiner.CICD.Tools.WinEncryptedKeys + /// WinEncryptedKeys --name SLC_EXTERNAL_DISPATCHER_KEY --value MYGUID + /// + /// The user dispatching the job. + /// True if the dispatch was successful, False if logging failed. + Task DispatchAsync(string user); + } +} \ No newline at end of file diff --git a/Empower.Library.Room3/LICENSE.txt b/Empower.Library.Room3/LICENSE.txt new file mode 100644 index 0000000..216b027 --- /dev/null +++ b/Empower.Library.Room3/LICENSE.txt @@ -0,0 +1,17 @@ +SKYLINE LIBRARY LICENSE + +1. Applicability +The software in this repository (hereafter the “Software”) is owned by Skyline Communications (hereafter “Skyline”). The terms of this license govern your use of the Software. If you do not agree with the terms of this license, you may not use or exploit the Software in any other manner. +2. Grant of rights +You may use the Software for the development, testing and validation of DataMiner packages and components only. +You may not use this Software in any other manner unless you have obtained Skyline’s prior written authorization to do so. +It is forbidden to create derivative works of the Software. +3. Intellectual property +Skyline owns the intellectual property rights vested in the Software. Skyline granting you access to the Software does not entail permission to utilize or otherwise manipulate the Software in contravention to this Library License. Skyline reserves the right to pursue legal action against you in case of breach of its intellectual property rights. +4. No warranty +Skyline provides the Software ‘as is’, without any warranty of any kind. +5. Limitation of liability +Within the maximum possible extent under the applicable laws, Skyline disclaims all liability for the Software. +6. Applicable laws and jurisdiction +This license shall be governed by the laws of Belgium. Any dispute shall be submitted to the exclusive jurisdiction of the competent courts of Gent, division Kortrijk, Belgium + diff --git a/Empower.Library.Room3/Order.cs b/Empower.Library.Room3/Order.cs new file mode 100644 index 0000000..f81f8cd --- /dev/null +++ b/Empower.Library.Room3/Order.cs @@ -0,0 +1,76 @@ +namespace Skyline.DataMiner.Empower.Library.Room3 +{ + using Nito.AsyncEx.Synchronous; + + using Skyline.DataMiner.CICD.Tools.WinEncryptedKeys.Lib; + + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Security; + using System.Text; + using System.Threading.Tasks; + + /// + /// Allows dispatching of an order to be sent over HTTPS to DataMiner. + /// + internal class Order : IOrder + { + private const string endpoint = "https://solutions.skyline.be/api/custom/operations/order"; + private static readonly string keyName = "SLC_EXTERNAL_DISPATCHER_KEY"; + + private readonly SecureString apiKey; + private readonly string suffix; + private readonly string name; + + /// + /// Creates an instance of . + /// + /// Value of the order. + public Order(string orderValue) + { + // Key was setup using the dotnet tool Skyline.DataMiner.CICD.Tools.WinEncryptedKeys + apiKey = Keys.RetrieveKey(keyName); + name = orderValue; + suffix = " from room 'ThisIsABug'"; + } + + /// + /// Dispatches this job and waits on result. + /// REQUIRED - A user secret holding the GUID to log to DataMiner is required. + /// Run the commands on every server you want to provide access: + /// dotnet tool install --global Skyline.DataMiner.CICD.Tools.WinEncryptedKeys + /// WinEncryptedKeys --name SLC_EXTERNAL_DISPATCHER_KEY --value MYGUID + /// + /// The user dispatching the job. + /// True if the dispatch was successful, False if logging failed. + public bool Dispatch(string user) + { + Task task = DispatchAsync(user); + return task.WaitAndUnwrapException(); + } + + /// + /// Dispatches this job without waiting on a result. + /// Run the commands on every server you want to provide access: + /// dotnet tool install --global Skyline.DataMiner.CICD.Tools.WinEncryptedKeys + /// WinEncryptedKeys --name SLC_EXTERNAL_DISPATCHER_KEY --value MYGUID + /// + /// The user dispatching the job. + /// True if the dispatch was successful, False if logging failed. + public async Task DispatchAsync(string user) + { + var url = endpoint; + string data = "User " + user + " placed order " + name + suffix; + + using (var client = new HttpClient()) + { + var content = new StringContent(data, Encoding.UTF8, "text/plain"); + client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", new NetworkCredential("", apiKey).Password); + var response = await client.PostAsync(url, content).ConfigureAwait(false); + + return response.IsSuccessStatusCode; + } + } + } +} diff --git a/Empower.Library.Room3/OrderFactory.cs b/Empower.Library.Room3/OrderFactory.cs new file mode 100644 index 0000000..d004d5c --- /dev/null +++ b/Empower.Library.Room3/OrderFactory.cs @@ -0,0 +1,24 @@ +using Skyline.DataMiner.Empower.Library.Room3; + +using System; +using System.Collections.Generic; +using System.Text; + +namespace Empower.Library.Room3 +{ + /// + /// Factory to create Orders. + /// + public static class OrderFactory + { + /// + /// Create an instance of . + /// + /// Value of the order. + /// An instance of . + public static IOrder CreateOrder(string orderValue) + { + return new Order(orderValue); + } + } +} diff --git a/Empower.Library.Room3/README.md b/Empower.Library.Room3/README.md new file mode 100644 index 0000000..9cd81ec --- /dev/null +++ b/Empower.Library.Room3/README.md @@ -0,0 +1,36 @@ +# Skyline.DataMiner.Empower.Library.Room3 + +## About + +Empower Demo - Library that allows an order to be placed on DataMiner solutions.skyline.be. + +This is done through HTTPS to a User Defined API on DataMiner. +It can only be done from a windows server that has the right security GUID configured using the following commands in powershell: + +``` +dotnet tool install --global Skyline.DataMiner.CICD.Tools.WinEncryptedKeys +WinEncryptedKeys --name SLC_EXTERNAL_DISPATCHER_KEY --value GUID +``` + +### About DataMiner + +DataMiner is a transformational platform that provides vendor-independent control and monitoring of devices and services. Out of the box and by design, it addresses key challenges such as security, complexity, multi-cloud, and much more. It has a pronounced open architecture and powerful capabilities enabling users to evolve easily and continuously. + +The foundation of DataMiner is its powerful and versatile data acquisition and control layer. With DataMiner, there are no restrictions to what data users can access. Data sources may reside on premises, in the cloud, or in a hybrid setup. + +A unique catalog of 7000+ connectors already exist. In addition, you can leverage DataMiner Development Packages to build you own connectors (also known as "protocols" or "drivers"). + +> **Note** +> See also: [About DataMiner](https://aka.dataminer.services/about-dataminer). + +### About Skyline Communications + +At Skyline Communications, we deal in world-class solutions that are deployed by leading companies around the globe. Check out [our proven track record](https://aka.dataminer.services/about-skyline) and see how we make our customers' lives easier by empowering them to take their operations to the next level. + + +## Getting Started + +``` csharp +var order = OrderFactory.CreateOrder("Order 1"); +order.Dispatch("MyUser"); +``` diff --git a/Empower.Library.Room3/nuget/Icon.png b/Empower.Library.Room3/nuget/Icon.png new file mode 100644 index 0000000000000000000000000000000000000000..38d067af6b95a154518b2c9b3904b228d58c1098 GIT binary patch literal 20877 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 **Note** +> See also: [About DataMiner](https://aka.dataminer.services/about-dataminer). + +### About Skyline Communications + +At Skyline Communications, we deal in world-class solutions that are deployed by leading companies around the globe. Check out [our proven track record](https://aka.dataminer.services/about-skyline) and see how we make our customers' lives easier by empowering them to take their operations to the next level. + +## Getting Started + +``` csharp +var order = OrderFactory.CreateOrder("Order 1"); +order.Dispatch("MyUser"); +``` diff --git a/Skyline.DataMiner.Empower.Library.Room3.sln b/Skyline.DataMiner.Empower.Library.Room3.sln new file mode 100644 index 0000000..175d84d --- /dev/null +++ b/Skyline.DataMiner.Empower.Library.Room3.sln @@ -0,0 +1,30 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.4.33213.308 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Empower.Library.Room3", "Empower.Library.Room3\Empower.Library.Room3.csproj", "{AB4DC6F6-D890-4BB9-96C3-40EC5B3ED4A1}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{A6009FF4-DC22-40D7-B26B-B872942E3825}" + ProjectSection(SolutionItems) = preProject + README.md = README.md + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {AB4DC6F6-D890-4BB9-96C3-40EC5B3ED4A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AB4DC6F6-D890-4BB9-96C3-40EC5B3ED4A1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AB4DC6F6-D890-4BB9-96C3-40EC5B3ED4A1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AB4DC6F6-D890-4BB9-96C3-40EC5B3ED4A1}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {5ACE812E-F9AC-4F5C-A745-CBEA8E493447} + EndGlobalSection +EndGlobal